diff options
Diffstat (limited to 'engines/titanic')
-rw-r--r-- | engines/titanic/game/fan_control.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/engines/titanic/game/fan_control.cpp b/engines/titanic/game/fan_control.cpp index 823bf946d4..ca664764ea 100644 --- a/engines/titanic/game/fan_control.cpp +++ b/engines/titanic/game/fan_control.cpp @@ -149,16 +149,20 @@ bool CFanControl::StatusChangeMsg(CStatusChangeMsg *msg) { bool CFanControl::EnterViewMsg(CEnterViewMsg *msg) { switch (_state) { - case 0: + case -1: + // Fan off loadFrame(6); break; - case 1: + case 0: + // Low speed loadFrame(4); break; - case 2: + case 1: + // Medium speed loadFrame(0); break; - case 3: + case 2: + // High speed loadFrame(18); break; default: |