mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-23 23:50:40 +00:00
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:
parent
d7d28ca24e
commit
d8f31187e1
1 changed files with 4 additions and 1 deletions
|
@ -6137,7 +6137,10 @@ int app_main(int argc, char const * const * argv)
|
||||||
Bfree(str);
|
Bfree(str);
|
||||||
}
|
}
|
||||||
|
|
||||||
int const readSetup = CONFIG_ReadSetup();
|
#ifdef STARTUP_SETUP_WINDOW
|
||||||
|
int const readSetup =
|
||||||
|
#endif
|
||||||
|
CONFIG_ReadSetup();
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue