]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
since motorsep put steelstorm2 after steelstorm, change the commandline
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 30 Nov 2011 06:19:30 +0000 (06:19 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 30 Nov 2011 06:19:30 +0000 (06:19 +0000)
search order so that it picks the last one

git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11582 d7cf8633-e32d-0410-b094-e92efae38249

common.c

index 199d106a798546136492daa19ac056805d82de54..b5005c6415accd4b461af261fa1cd6ce73c053ff 100644 (file)
--- a/common.c
+++ b/common.c
@@ -1482,18 +1482,12 @@ void COM_InitGameType (void)
        COM_ToLowerString(name, name, sizeof (name));
        for (i = 1;i < (int)(sizeof (gamemode_info) / sizeof (gamemode_info[0]));i++)
                if (gamemode_info[i].prog_name && gamemode_info[i].prog_name[0] && strstr (name, gamemode_info[i].prog_name))
-               {
                        index = i;
-                       break;
-               }
 
        // check commandline options for keywords
        for (i = 0;i < (int)(sizeof (gamemode_info) / sizeof (gamemode_info[0]));i++)
                if (COM_CheckParm (gamemode_info[i].cmdline))
-               {
                        index = i;
-                       break;
-               }
 
        com_startupgamemode = gamemode_info[index].mode;
        com_startupgamegroup = gamemode_info[index].group;