diff options
Diffstat (limited to 'code/q3_ui/ui_startserver.c')
-rw-r--r-- | code/q3_ui/ui_startserver.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/code/q3_ui/ui_startserver.c b/code/q3_ui/ui_startserver.c index 401f687..9a193ed 100644 --- a/code/q3_ui/ui_startserver.c +++ b/code/q3_ui/ui_startserver.c @@ -98,7 +98,7 @@ static const char *gametype_items[] = { "Team Deathmatch", "Tournament", "Capture the Flag", - 0 + NULL }; static int gametype_remap[] = {GT_FFA, GT_TEAM, GT_TOURNAMENT, GT_CTF}; @@ -665,20 +665,20 @@ static const char *dedicated_list[] = { "No", "LAN", "Internet", - 0 + NULL }; static const char *playerType_list[] = { "Open", "Bot", "----", - 0 + NULL }; static const char *playerTeam_list[] = { "Blue", "Red", - 0 + NULL }; static const char *botSkill_list[] = { @@ -687,7 +687,7 @@ static const char *botSkill_list[] = { "Hurt Me Plenty", "Hardcore", "Nightmare!", - 0 + NULL }; |