summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/g_game.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/g_game.c')
-rw-r--r--apps/plugins/doom/g_game.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/doom/g_game.c b/apps/plugins/doom/g_game.c
index e8c55eb77e..d4445254f0 100644
--- a/apps/plugins/doom/g_game.c
+++ b/apps/plugins/doom/g_game.c
@@ -2012,7 +2012,7 @@ void G_ReloadDefaults(void)
2012 int i = M_CheckParm("-complevel"); 2012 int i = M_CheckParm("-complevel");
2013 if (i && (1+i) < myargc) compatibility_level = atoi(myargv[i+1]); 2013 if (i && (1+i) < myargc) compatibility_level = atoi(myargv[i+1]);
2014 } 2014 }
2015 if ((signed)compatibility_level == -1) 2015 if (compatibility_level == (complevel_t)-1)
2016 compatibility_level = MAX_COMPATIBILITY_LEVEL-1; 2016 compatibility_level = MAX_COMPATIBILITY_LEVEL-1;
2017 2017
2018 if (mbf_features) 2018 if (mbf_features)