diff options
-rw-r--r-- | engines/titanic/game/fan_control.cpp | 2 |
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); |