Always load the save game.

This commit is contained in:
Steve 2016-04-30 11:21:05 +01:00
parent 31ec5b1f8d
commit 1e631994b3
1 changed files with 5 additions and 5 deletions

View File

@ -196,13 +196,13 @@ static void handleArguments(int argc, char *argv[])
}
}
if (fileExists(getSaveFilePath(SAVE_FILENAME)))
{
loadGame();
}
if (!testingMission)
{
if (fileExists(getSaveFilePath(SAVE_FILENAME)))
{
loadGame();
}
initTitle();
}
}