TITANIC: Fix toggling fan speed from very fast down to slow

This commit is contained in:
Paul Gilbert 2017-08-18 20:22:34 -04:00
parent 4263b29d0a
commit 5eff8ab961

View File

@ -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);