mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +00:00
Only show "using dynamic tile remapping" message in debug builds. DONT_BUILD.
git-svn-id: https://svn.eduke32.com/eduke32@6227 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
c26fcfa786
commit
bcb6d3830b
1 changed files with 5 additions and 3 deletions
|
@ -4098,12 +4098,14 @@ DO_DEFSTATE:
|
|||
initprintf("%s:%d: warning: duplicate dynamicremap statement\n",g_scriptFileName,g_lineNumber);
|
||||
g_warningCnt++;
|
||||
}
|
||||
else
|
||||
#ifdef DYNTILEREMAP_ENABLE
|
||||
#ifdef DEBUGGINGAIDS
|
||||
else
|
||||
initprintf("Using dynamic tile remapping\n");
|
||||
|
||||
#endif
|
||||
g_dynamicTileMapping = 1;
|
||||
#else
|
||||
else
|
||||
{
|
||||
initprintf("%s:%d: warning: dynamic tile remapping is disabled in this build\n",g_scriptFileName,g_lineNumber);
|
||||
g_warningCnt++;
|
||||
|
|
Loading…
Reference in a new issue