From 1fc919f5a12a8c1663aa094697085cc21daa5c35 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 25 Sep 2020 19:46:04 +0200 Subject: [PATCH] - fixed episode startup on Duke so that the intro for ep. 4 plays. --- source/games/duke/src/gameloop.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/games/duke/src/gameloop.cpp b/source/games/duke/src/gameloop.cpp index 6f8afe796..1b845ff49 100644 --- a/source/games/duke/src/gameloop.cpp +++ b/source/games/duke/src/gameloop.cpp @@ -191,7 +191,8 @@ void GameInterface::NewGame(MapRecord* map, int skill) ps[0].last_extra = max_player_health; resetweapons(0); resetinventory(0); - NextLevel(map, skill); + + startnewgame(map, skill); } //---------------------------------------------------------------------------