mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Fix a compiler warning with USE_OPENGL=0.
git-svn-id: https://svn.eduke32.com/eduke32@5040 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
b61908cbf3
commit
9079be2e27
1 changed files with 4 additions and 1 deletions
|
@ -1491,7 +1491,10 @@ static int32_t defsparser(scriptfile *script)
|
|||
char *skyboxtokptr = script->ltextptr;
|
||||
char *fn[6] = {0,0,0,0,0,0};
|
||||
char *modelend;
|
||||
int32_t i, tile = -1, pal = 0, happy = 1, flags = 0;
|
||||
int32_t i, tile = -1, pal = 0, happy = 1;
|
||||
#ifdef USE_OPENGL
|
||||
int32_t flags = 0;
|
||||
#endif
|
||||
|
||||
static const tokenlist skyboxtokens[] =
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue