Avoid unused variable warning with the startup window disabled. DONT_BUILD.

git-svn-id: https://svn.eduke32.com/eduke32@5940 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2016-11-28 04:35:21 +00:00
parent d7d28ca24e
commit d8f31187e1
1 changed files with 4 additions and 1 deletions

View File

@ -6137,7 +6137,10 @@ int app_main(int argc, char const * const * argv)
Bfree(str);
}
int const readSetup = CONFIG_ReadSetup();
#ifdef STARTUP_SETUP_WINDOW
int const readSetup =
#endif
CONFIG_ReadSetup();
#ifdef _WIN32