mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
TITANIC: Fix initial display of fan control indicator
This commit is contained in:
parent
e2dba404a6
commit
ba77ec28b9
@ -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:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user