Fix /playback command line argument handling

This commit is contained in:
sirlemonhead 2019-12-02 17:05:02 +00:00 committed by Christoph Oelckers
parent a55a5ef038
commit 7a7a0e16e8
1 changed files with 2 additions and 2 deletions

View File

@ -2085,9 +2085,9 @@ int app_main(int argc, char const* const* argv)
goto STARTGAME1;
}
// no forcelevel specified...
if (!bPlayback)
if (bPlayback)
{
goto MENU;
goto STARTGAME1;
}
MENU:
SavePosition = -1;