From 3b579178d447d68f514a809d06ae45ce039ed5b2 Mon Sep 17 00:00:00 2001 From: David Fioramonti Date: Sat, 9 Sep 2017 14:06:15 -0700 Subject: TITANIC: Hitting go on captain wheel resets it In the original once you have hit the go button on the steering wheel it won't let you use it again until you have solved the puzzle so that is how ScummVM does it now. --- engines/titanic/game/captains_wheel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/engines/titanic/game/captains_wheel.cpp b/engines/titanic/game/captains_wheel.cpp index eafb478d0e..32582ed996 100644 --- a/engines/titanic/game/captains_wheel.cpp +++ b/engines/titanic/game/captains_wheel.cpp @@ -99,6 +99,7 @@ bool CCaptainsWheel::ActMsg(CActMsg *msg) { } } else if (msg->_action == "Go") { if (_stopEnabled) { + _goEnabled = false; incTransitions(); _stopEnabled = false; _actionNum = 1; -- cgit v1.2.3