TITANIC: Fix initial display of fan control indicator

This commit is contained in:
Paul Gilbert 2017-01-03 17:34:23 -05:00
parent e2dba404a6
commit ba77ec28b9

View File

@ -149,16 +149,20 @@ bool CFanControl::StatusChangeMsg(CStatusChangeMsg *msg) {
bool CFanControl::EnterViewMsg(CEnterViewMsg *msg) { bool CFanControl::EnterViewMsg(CEnterViewMsg *msg) {
switch (_state) { switch (_state) {
case 0: case -1:
// Fan off
loadFrame(6); loadFrame(6);
break; break;
case 1: case 0:
// Low speed
loadFrame(4); loadFrame(4);
break; break;
case 2: case 1:
// Medium speed
loadFrame(0); loadFrame(0);
break; break;
case 3: case 2:
// High speed
loadFrame(18); loadFrame(18);
break; break;
default: default: