aboutsummaryrefslogtreecommitdiffstats
path: root/code/cgame/cg_players.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/cgame/cg_players.c')
-rw-r--r--code/cgame/cg_players.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/cgame/cg_players.c b/code/cgame/cg_players.c
index a7858fd..dd29fe2 100644
--- a/code/cgame/cg_players.c
+++ b/code/cgame/cg_players.c
@@ -298,7 +298,7 @@ CG_FileExists
static qboolean CG_FileExists(const char *filename) {
int len;
- len = trap_FS_FOpenFile( filename, 0, FS_READ );
+ len = trap_FS_FOpenFile( filename, NULL, FS_READ );
if (len>0) {
return qtrue;
}