mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
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:
parent
ff8d608caf
commit
7e914f838a
1 changed files with 2 additions and 0 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue