From dddf26620b7fbb504cd290cf0917651dbb60e0bf Mon Sep 17 00:00:00 2001 From: neuromancer Date: Thu, 24 Feb 2022 12:50:52 +0100 Subject: [PATCH] HYPNO: fixed ids from c401.mi_ and c402.mi_ in wet --- engines/hypno/wet/wet.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/engines/hypno/wet/wet.cpp b/engines/hypno/wet/wet.cpp index 05e6bbfda05..94ff26e0423 100644 --- a/engines/hypno/wet/wet.cpp +++ b/engines/hypno/wet/wet.cpp @@ -316,7 +316,12 @@ void WetEngine::loadAssetsFullGame() { arc->id = 40; // Fixed from the original (4) loadArcadeLevel("c401.mi_", "c51", "", ""); + arc = (ArcadeShooting*) _levels["c401.mi_"]; + arc->id = 40; // Fixed from the original (4) + loadArcadeLevel("c402.mi_", "c51", "", ""); + arc = (ArcadeShooting*) _levels["c402.mi_"]; + arc->id = 40; // Fixed from the original (4) loadArcadeLevel("c510.mi_", "c52", "", ""); loadArcadeLevel("c511.mi_", "c52", "", ""); @@ -349,7 +354,7 @@ void WetEngine::loadAssetsFullGame() { loadLib("", "c_misc/fonts.lib", true); loadFonts(); loadLib("sound/", "c_misc/sound.lib", true); - _nextLevel = "c400.mi_"; + _nextLevel = ""; } void WetEngine::showCredits() {