Browse Source

engine: common: cfgscript.c: change wrong variable type to fix compilation.

pull/2/head
Andrey Akhmichin 5 years ago committed by Alibek Omarov
parent
commit
6f2b559c5a
  1. 4
      engine/common/cfgscript.c

4
engine/common/cfgscript.c

@ -214,7 +214,7 @@ int CSCR_WriteGameCVars( file_t *cfg, const char *scriptfilename ) @@ -214,7 +214,7 @@ int CSCR_WriteGameCVars( file_t *cfg, const char *scriptfilename )
parserstate_t state = { 0 };
qboolean success = false;
int count = 0;
long length = 0;
fs_offset_t length = 0;
char *start;
state.filename = scriptfilename;
@ -284,7 +284,7 @@ int CSCR_LoadDefaultCVars( const char *scriptfilename ) @@ -284,7 +284,7 @@ int CSCR_LoadDefaultCVars( const char *scriptfilename )
parserstate_t state = { 0 };
qboolean success = false;
int count = 0;
long length = 0;
fs_offset_t length = 0;
char *start;
state.filename = scriptfilename;

Loading…
Cancel
Save