ULTIMA8: Correct intrinsic count for Remorse

This commit is contained in:
Matthew Duggan 2021-04-25 13:01:43 +09:00
parent 4e4cfe5494
commit 79d61a59a2

View File

@ -354,7 +354,7 @@ bool Ultima8Engine::startupGame() {
if (_gameInfo->_type == GameInfo::GAME_U8) {
_ucMachine = new UCMachine(U8Intrinsics, 256);
} else if (_gameInfo->_type == GameInfo::GAME_REMORSE) {
_ucMachine = new UCMachine(RemorseIntrinsics, 308);
_ucMachine = new UCMachine(RemorseIntrinsics, 311);
} else if (_gameInfo->_type == GameInfo::GAME_REGRET) {
_ucMachine = new UCMachine(RegretIntrinsics, 350);
} else {