Silence annoying experimental build warning
- Compiling locally on VS defines BRANCH to "" (empty $BRANCH envvar) and defines _MSC_VER. The pdb check is useless since it will never be reached
This commit is contained in:
@@ -121,10 +121,7 @@ void main_window::Init()
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef BRANCH
|
#ifdef BRANCH
|
||||||
if ("RPCS3/rpcs3/master"s != STRINGIZE(BRANCH))
|
if ("RPCS3/rpcs3/master"s != STRINGIZE(BRANCH) && ""s != STRINGIZE(BRANCH))
|
||||||
#elif _MSC_VER
|
|
||||||
fs::stat_t st;
|
|
||||||
if (!fs::stat(fs::get_config_dir() + "rpcs3.pdb", st) || st.is_directory || st.size < 1024 * 1024 * 100)
|
|
||||||
#else
|
#else
|
||||||
if (false)
|
if (false)
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user