mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-05 09:49:14 +00:00
SCI: Fixed one of the bugs in hoyle3, from bug report #3038837 - "HOYLE3: EGA/VGA Crashes" (that report includes more issues)
svn-id: r52213
This commit is contained in:
parent
c427ecb7cc
commit
780dacf48d
@ -1319,7 +1319,7 @@ void run_vm(EngineState *s) {
|
||||
if (validate_unsignedInteger(r_temp, compare1) && validate_unsignedInteger(s->r_acc, compare2))
|
||||
s->r_acc = make_reg(0, compare1 < compare2);
|
||||
else
|
||||
s->r_acc = arithmetic_lookForWorkaround(opcode, NULL, r_temp, s->r_acc);
|
||||
s->r_acc = arithmetic_lookForWorkaround(opcode, opcodeUltWorkarounds, r_temp, s->r_acc);
|
||||
}
|
||||
break;
|
||||
|
||||
|
@ -59,6 +59,12 @@ const SciWorkaroundEntry opcodeLeWorkarounds[] = {
|
||||
SCI_WORKAROUNDENTRY_TERMINATOR
|
||||
};
|
||||
|
||||
// gameID, room,script,lvl, object-name, method-name, call,index, workaround
|
||||
const SciWorkaroundEntry opcodeUltWorkarounds[] = {
|
||||
{ GID_HOYLE3, 400, 0, 1, "Character", "say", -1, 0, { WORKAROUND_FAKE, 0 } }, // While playing Pachisi, when any character starts to talk - bug #3038837
|
||||
SCI_WORKAROUNDENTRY_TERMINATOR
|
||||
};
|
||||
|
||||
// gameID, room,script,lvl, object-name, method-name, call,index, workaround
|
||||
const SciWorkaroundEntry opcodeLaiWorkarounds[] = {
|
||||
{ GID_CAMELOT, 92, 92, 0, "endingCartoon2", "changeState", 0x20d, 0, { WORKAROUND_FAKE, 0 } }, // during the ending, sub gets called with no parameters, uses parameter 1 which is theGrail in this case - bug #3044734
|
||||
|
@ -72,6 +72,7 @@ extern const SciWorkaroundEntry opcodeDivWorkarounds[];
|
||||
extern const SciWorkaroundEntry opcodeDptoaWorkarounds[];
|
||||
extern const SciWorkaroundEntry opcodeGeWorkarounds[];
|
||||
extern const SciWorkaroundEntry opcodeLeWorkarounds[];
|
||||
extern const SciWorkaroundEntry opcodeUltWorkarounds[];
|
||||
extern const SciWorkaroundEntry opcodeLaiWorkarounds[];
|
||||
extern const SciWorkaroundEntry opcodeLsiWorkarounds[];
|
||||
extern const SciWorkaroundEntry opcodeMulWorkarounds[];
|
||||
|
Loading…
x
Reference in New Issue
Block a user