Added -easy switch to allow mission to be started in Easy mode.

This commit is contained in:
Steve 2017-05-16 08:13:22 +01:00
parent 9e61653ea4
commit b8d3348681
1 changed files with 5 additions and 0 deletions

View File

@ -251,6 +251,11 @@ static void handleMissionArgs(int argc, char *argv[])
{
showCredits = 1;
}
if (strcmp(argv[i], "-easy") == 0)
{
game.difficulty = DIFFICULTY_EASY;
}
}
if (showCredits)