aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/game
diff options
context:
space:
mode:
authorPaul Gilbert2017-08-18 20:22:34 -0400
committerPaul Gilbert2017-08-18 20:22:34 -0400
commit5eff8ab961ae3f09b8f612939b55d9c90441966c (patch)
treebb20c8155e7dee10a395c54c3dc54d95d1e82070 /engines/titanic/game
parent4263b29d0aa98ce5c621d2170eb6f961b6ac20f8 (diff)
downloadscummvm-rg350-5eff8ab961ae3f09b8f612939b55d9c90441966c.tar.gz
scummvm-rg350-5eff8ab961ae3f09b8f612939b55d9c90441966c.tar.bz2
scummvm-rg350-5eff8ab961ae3f09b8f612939b55d9c90441966c.zip
TITANIC: Fix toggling fan speed from very fast down to slow
Diffstat (limited to 'engines/titanic/game')
-rw-r--r--engines/titanic/game/fan_control.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/game/fan_control.cpp b/engines/titanic/game/fan_control.cpp
index 7ed22fd560..fc99bd8b36 100644
--- a/engines/titanic/game/fan_control.cpp
+++ b/engines/titanic/game/fan_control.cpp
@@ -107,7 +107,7 @@ bool CFanControl::StatusChangeMsg(CStatusChangeMsg *msg) {
case 2:
// Fan Speed button
if (_fanOn) {
- _state = (_state + 1) % 4;
+ _state = (_state + 1) % 3;
switch (_state) {
case 0:
playMovie(18, 24, 0);