C-CON: Allow gamestartup to read in one additional parameter (MAXFLAMETHROWERAMMO). Do nothing with it yet.

git-svn-id: https://svn.eduke32.com/eduke32@5894 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2016-10-14 07:40:44 +00:00
parent 3ce371d84d
commit c8f1e9bf37

View file

@ -6013,16 +6013,16 @@ repeatcase:
case CON_GAMESTARTUP: case CON_GAMESTARTUP:
{ {
int32_t params[30]; int32_t params[31];
g_scriptPtr--; g_scriptPtr--;
for (j = 0; j < 30; j++) for (j = 0; j < 31; j++)
{ {
C_GetNextValue(LABEL_DEFINE); C_GetNextValue(LABEL_DEFINE);
g_scriptPtr--; g_scriptPtr--;
params[j] = *g_scriptPtr; params[j] = *g_scriptPtr;
if (j != 12 && j != 21 && j != 25) continue; if (j != 12 && j != 21 && j != 25 && j != 29) continue;
if (C_GetKeyword() != -1) if (C_GetKeyword() != -1)
{ {
@ -6032,10 +6032,12 @@ repeatcase:
g_scriptVersion = 11; g_scriptVersion = 11;
else if (j == 25) else if (j == 25)
g_scriptVersion = 13; g_scriptVersion = 13;
else if (j == 29)
g_scriptVersion = 14;
break; break;
} }
else else
g_scriptVersion = 14; g_scriptVersion = 16;
} }
/* /*