Cleanup, could cause regressions.
svn-id: r27547
This commit is contained in:
parent
aeb9668d66
commit
ab9b9a1bf3
9 changed files with 30 additions and 44 deletions
|
@ -364,16 +364,16 @@ void AGOSEngine::printScreenText(uint vgaSpriteId, uint color, const char *strin
|
|||
renderString(vgaSpriteId, color, width, height, convertedString);
|
||||
}
|
||||
|
||||
int b = (!getBitFlag(133)) ? 3 : 4;
|
||||
uint16 windowNum = (!getBitFlag(133)) ? 3 : 4;
|
||||
|
||||
x /= 8;
|
||||
if (y < 2)
|
||||
y = 2;
|
||||
|
||||
if (getGameType() == GType_SIMON1)
|
||||
animate(b, 2, vgaSpriteId + 199, x, y, 12);
|
||||
animate(windowNum, 2, 199 + vgaSpriteId, x, y, 12);
|
||||
else
|
||||
animate(b, 2, vgaSpriteId, x, y, 12);
|
||||
animate(windowNum, 2, vgaSpriteId, x, y, 12);
|
||||
}
|
||||
|
||||
// The Feeble Files specific
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue