From bcd4dfb86a4fa064f92da4b975bd12dc7443dea8 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Thu, 7 Jun 2007 00:54:17 +0000 Subject: Fix incorrect position of characters in Elvira 2, caused by column offset difference in clearWindow. svn-id: r27154 --- engines/agos/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/agos/window.cpp b/engines/agos/window.cpp index 80c5859794..2af0fd43f2 100644 --- a/engines/agos/window.cpp +++ b/engines/agos/window.cpp @@ -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; } -- cgit v1.2.3