From 7a7a0e16e876044bd7793d86e768742d4f21b76c Mon Sep 17 00:00:00 2001 From: sirlemonhead Date: Mon, 2 Dec 2019 17:05:02 +0000 Subject: [PATCH] Fix /playback command line argument handling --- source/exhumed/src/exhumed.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/exhumed/src/exhumed.cpp b/source/exhumed/src/exhumed.cpp index 33b9d1f92..7136ee06f 100644 --- a/source/exhumed/src/exhumed.cpp +++ b/source/exhumed/src/exhumed.cpp @@ -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;