From ba77ec28b99394540d5871f45d61e4ac432cf1b9 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Tue, 3 Jan 2017 17:34:23 -0500 Subject: [PATCH] TITANIC: Fix initial display of fan control indicator --- engines/titanic/game/fan_control.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/engines/titanic/game/fan_control.cpp b/engines/titanic/game/fan_control.cpp index 823bf946d48..ca664764ea9 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: