KINGDOM: Add GPL3 case 701

This commit is contained in:
Strangerke 2017-06-21 07:49:21 +02:00 committed by Eugene Sandulenko
parent bcfd39c640
commit 36df466c66

View File

@ -84,6 +84,30 @@ void KingdomGame::GPLogic3() {
break;
}
break;
case 701:
switch(_UserInput) {
case 0x43E:
_Sound = _LastSound;
PlayMovie(_PMovie);
break;
case 0x445:
_StatPlay = 650;
_LoopFlag = true;
break;
case 0x446:
_StatPlay = 780;
_LoopFlag = true;
break;
case 0x447:
_StatPlay = 660;
_LoopFlag = true;
break;
default:
if (_UserInput)
debug("Skipped UserInput %d(0x%04X) for _StatPlay %d", _UserInput, _UserInput, _StatPlay);
break;
}
break;
}
}