diff options
Diffstat (limited to 'src/client/cl_main.c')
-rw-r--r-- | src/client/cl_main.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/client/cl_main.c b/src/client/cl_main.c index 189270f1..a7806bba 100644 --- a/src/client/cl_main.c +++ b/src/client/cl_main.c @@ -125,6 +125,9 @@ clientConnection_t clc; clientStatic_t cls; vm_t *cgvm; +char cl_oldGame[MAX_QPATH]; +qboolean cl_oldGameSet; + // Structure containing functions exported from refresh DLL refexport_t re; #ifdef USE_RENDERER_DLOPEN @@ -1361,11 +1364,11 @@ static void CL_UpdateGUID( const char *prefix, int prefix_len ) static void CL_OldGame(void) { - if(cls.oldGameSet) + if(cl_oldGameSet) { // change back to previous fs_game - cls.oldGameSet = qfalse; - Cvar_Set2("fs_game", cls.oldGame, qtrue); + cl_oldGameSet = qfalse; + Cvar_Set2("fs_game", cl_oldGame, qtrue); FS_ConditionalRestart(clc.checksumFeed, qfalse); } } @@ -3506,7 +3509,7 @@ void CL_Init( void ) { { CL_ClearState(); clc.state = CA_DISCONNECTED; // no longer CA_UNINITIALIZED - cls.oldGameSet = qfalse; + cl_oldGameSet = qfalse; } cls.realtime = 0; |