mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-30 23:43:10 +00:00
Fix incorrect position of characters in Elvira 2, caused by column offset difference in clearWindow.
svn-id: r27154
This commit is contained in:
parent
cd73da05cc
commit
bcd4dfb86a
@ -103,7 +103,7 @@ void AGOSEngine::clearWindow(WindowBlock *window) {
|
||||
|
||||
window->textColumn = 0;
|
||||
window->textRow = 0;
|
||||
window->textColumnOffset = 0;
|
||||
window->textColumnOffset = (getGameType() == GType_ELVIRA2) ? 4 : 0;
|
||||
window->textLength = 0;
|
||||
window->scrollY = 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user