From 7e914f838ae537044704cd53b05ff5141cd721e8 Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Mon, 9 Oct 2017 07:36:40 +0000 Subject: [PATCH] Avoid an unused variable warning with EDUKE32_STANDALONE. git-svn-id: https://svn.eduke32.com/eduke32@6462 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/duke3d/src/anim.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/duke3d/src/anim.cpp b/source/duke3d/src/anim.cpp index 84c588da1..a25ab2f76 100644 --- a/source/duke3d/src/anim.cpp +++ b/source/duke3d/src/anim.cpp @@ -73,11 +73,13 @@ dukeanim_t * Anim_Create(char const * fn) return anim; } +#ifndef EDUKE32_STANDALONE #ifdef DYNSOUNDREMAP_ENABLE static int32_t const StopAllSounds = -1; #else # define StopAllSounds -1 #endif +#endif void Anim_Init(void) {