Avoid an unused variable warning with EDUKE32_STANDALONE.

git-svn-id: https://svn.eduke32.com/eduke32@6462 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2017-10-09 07:36:40 +00:00
parent ff8d608caf
commit 7e914f838a
1 changed files with 2 additions and 0 deletions

View File

@ -73,11 +73,13 @@ dukeanim_t * Anim_Create(char const * fn)
return anim; return anim;
} }
#ifndef EDUKE32_STANDALONE
#ifdef DYNSOUNDREMAP_ENABLE #ifdef DYNSOUNDREMAP_ENABLE
static int32_t const StopAllSounds = -1; static int32_t const StopAllSounds = -1;
#else #else
# define StopAllSounds -1 # define StopAllSounds -1
#endif #endif
#endif
void Anim_Init(void) void Anim_Init(void)
{ {