mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-30 15:31:59 +00:00
Added suggested hack for bug #556558, which was bug in original game.
svn-id: r14512
This commit is contained in:
parent
bbebe291b2
commit
3d4054c793
@ -816,6 +816,14 @@ void ScummEngine_v6::o6_startScript() {
|
||||
script = pop();
|
||||
flags = pop();
|
||||
|
||||
// HACK bug #556558: At Dino Bungee National Memorial, the buttons for the Wally
|
||||
// and Rex dinosaurs will always restart their speech, instead of stopping and
|
||||
// starting their speech. This was a script bug in the original game.
|
||||
if (_gameId == GID_SAMNMAX && _roomResource == 59 &&
|
||||
vm.slot[_currentScript].number == 201 && script == 48) {
|
||||
o6_breakHere();
|
||||
}
|
||||
|
||||
// WORKAROUND bug #903223: In Puerto Pollo, if you have Guybrush examine
|
||||
// the church clock, he'll read out the current time. Nice touch, only that
|
||||
// it sounds crap in the german version (and maybe others, too). It seems
|
||||
|
Loading…
x
Reference in New Issue
Block a user