diff options
Diffstat (limited to 'src/client/cl_parse.c')
-rw-r--r-- | src/client/cl_parse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/cl_parse.c b/src/client/cl_parse.c index 38d9edd3..c72a5588 100644 --- a/src/client/cl_parse.c +++ b/src/client/cl_parse.c @@ -529,10 +529,10 @@ void CL_ParseGamestate( msg_t *msg ) { CL_StopRecord_f(); // reinitialize the filesystem if the game directory has changed - if(!cls.oldGameSet && (Cvar_Flags("fs_game") & CVAR_MODIFIED)) + if(!cl_oldGameSet && (Cvar_Flags("fs_game") & CVAR_MODIFIED)) { - cls.oldGameSet = qtrue; - Q_strncpyz(cls.oldGame, oldGame, sizeof(cls.oldGame)); + cl_oldGameSet = qtrue; + Q_strncpyz(cl_oldGame, oldGame, sizeof(cl_oldGame)); } FS_ConditionalRestart(clc.checksumFeed, qfalse); |