mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
Add work around for script bug in The Feeble Files.
svn-id: r31260
This commit is contained in:
parent
c4f15a7076
commit
4d51eb5fb7
@ -255,6 +255,11 @@ void AGOSEngine::o_add() {
|
||||
// 43: add
|
||||
uint var = getVarWrapper();
|
||||
writeVariable(var, readVariable(var) + getVarOrWord());
|
||||
|
||||
// WORKAROUND: The converation of the male in Vid-Phone Booth at Dave's Space Bar
|
||||
// is based on variable 116, but stops due to a missing option (37).
|
||||
if (getGameType() == GType_FF && _currentTable->id == 10538 && readVariable(116) == 37)
|
||||
writeVariable(116, 38);
|
||||
}
|
||||
|
||||
void AGOSEngine::o_sub() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user