[Scummvm-git-logs] scummvm master -> 119fd5fd34654c4c1af86f6952b6b2e5e94ee927

dreammaster dreammaster at scummvm.org
Thu Mar 30 04:04:08 CEST 2017


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
119fd5fd34 TITANIC: Fix non-responsive Go button in bridge controls


Commit: 119fd5fd34654c4c1af86f6952b6b2e5e94ee927
    https://github.com/scummvm/scummvm/commit/119fd5fd34654c4c1af86f6952b6b2e5e94ee927
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2017-03-29T22:03:57-04:00

Commit Message:
TITANIC: Fix non-responsive Go button in bridge controls

Changed paths:
    engines/titanic/game/captains_wheel.cpp


diff --git a/engines/titanic/game/captains_wheel.cpp b/engines/titanic/game/captains_wheel.cpp
index 1f0b177..eafb478 100644
--- a/engines/titanic/game/captains_wheel.cpp
+++ b/engines/titanic/game/captains_wheel.cpp
@@ -98,7 +98,7 @@ bool CCaptainsWheel::ActMsg(CActMsg *msg) {
 			playMovie(150, 160, MOVIE_NOTIFY_OBJECT | MOVIE_WAIT_FOR_FINISH);
 		}
 	} else if (msg->_action == "Go") {
-		if (!_stopEnabled) {
+		if (_stopEnabled) {
 			incTransitions();
 			_stopEnabled = false;
 			_actionNum = 1;





More information about the Scummvm-git-logs mailing list