mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-22 20:21:06 +00:00
Add opcode 161 difference in FF, fixes some glitches in 2nd room
svn-id: r21416
This commit is contained in:
parent
bc8f634834
commit
ddc1a7a52f
@ -938,7 +938,10 @@ int SimonEngine::runScript() {
|
||||
TextLocation *tl = getTextLocation(getVarOrByte());
|
||||
|
||||
tl->x = getVarOrWord();
|
||||
tl->y = getVarOrByte();
|
||||
if (getGameType() == GType_FF)
|
||||
tl->y = getVarOrWord();
|
||||
else
|
||||
tl->y = getVarOrByte();
|
||||
tl->width = getVarOrWord();
|
||||
}
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user