diff options
Diffstat (limited to 'source/sv_init.c')
-rw-r--r-- | source/sv_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/sv_init.c b/source/sv_init.c index 59e58ee..9c19b01 100644 --- a/source/sv_init.c +++ b/source/sv_init.c @@ -338,7 +338,7 @@ void SV_Map (const char *levelstring, qboolean restart) { Q_concat( expanded, sizeof( expanded ), "maps/", level, ".bsp", NULL ); ret = CM_LoadMap( &cm, expanded ); - if( ret < 0 ) { + if( ret ) { Com_Printf( "Couldn't load %s: %s\n", expanded, Q_ErrorString( ret ) ); return; } |