mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 11:40:44 +00:00
Fix /playback command line argument handling
This commit is contained in:
parent
a55a5ef038
commit
7a7a0e16e8
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue