From 02edf9a0e43c0d170fd9714f76af37831b36743a Mon Sep 17 00:00:00 2001 From: plagman Date: Thu, 7 May 2009 16:05:33 +0000 Subject: [PATCH] Fix the build with POLYMOST=0. git-svn-id: https://svn.eduke32.com/eduke32@1366 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/source/gamevars.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/polymer/eduke32/source/gamevars.c b/polymer/eduke32/source/gamevars.c index 48ec09c4d..b8525ef5b 100644 --- a/polymer/eduke32/source/gamevars.c +++ b/polymer/eduke32/source/gamevars.c @@ -1606,8 +1606,9 @@ static void Gv_AddSystemVars(void) Gv_NewVar("NUMSECTORS",(intptr_t)&numsectors, GAMEVAR_SYSTEM | GAMEVAR_SHORTPTR | GAMEVAR_READONLY); Gv_NewVar("lastsavepos",(intptr_t)&g_lastSaveSlot, GAMEVAR_SYSTEM | GAMEVAR_INTPTR | GAMEVAR_SYNCCHECK); - +#ifdef POLYMOST Gv_NewVar("rendmode",(int32_t)&rendmode, GAMEVAR_READONLY | GAMEVAR_INTPTR | GAMEVAR_SYSTEM | GAMEVAR_SYNCCHECK); +#endif } void Gv_Init(void) @@ -1760,5 +1761,7 @@ void Gv_RefreshPointers(void) aGameVars[Gv_GetVarIndex("NUMSECTORS")].val.lValue = (intptr_t)&numsectors; aGameVars[Gv_GetVarIndex("lastsavepos")].val.lValue = (intptr_t)&g_lastSaveSlot; +#ifdef POLYMOST aGameVars[Gv_GetVarIndex("rendmode")].val.lValue = (int32_t)&rendmode; +#endif }