Add opcode 161 difference in FF, fixes some glitches in 2nd room

svn-id: r21416
This commit is contained in:
Travis Howell 2006-03-23 04:41:06 +00:00
parent bc8f634834
commit ddc1a7a52f

View File

@ -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;