mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
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:
parent
8f324dfc0a
commit
96fd8556f2
1 changed files with 1 additions and 4 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue