[Scummvm-cvs-logs] SF.net SVN: scummvm: [27155] scummvm/branches/branch-0-10-0/engines/agos/ window.cpp

Kirben at users.sourceforge.net Kirben at users.sourceforge.net
Thu Jun 7 02:54:50 CEST 2007


Revision: 27155
          http://scummvm.svn.sourceforge.net/scummvm/?rev=27155&view=rev
Author:   Kirben
Date:     2007-06-06 17:54:50 -0700 (Wed, 06 Jun 2007)

Log Message:
-----------
Fix incorrect position of characters in Elvira 2, caused by column offset difference in clearWindow.

Modified Paths:
--------------
    scummvm/branches/branch-0-10-0/engines/agos/window.cpp

Modified: scummvm/branches/branch-0-10-0/engines/agos/window.cpp
===================================================================
--- scummvm/branches/branch-0-10-0/engines/agos/window.cpp	2007-06-07 00:54:17 UTC (rev 27154)
+++ scummvm/branches/branch-0-10-0/engines/agos/window.cpp	2007-06-07 00:54:50 UTC (rev 27155)
@@ -103,7 +103,7 @@
 
 	window->textColumn = 0;
 	window->textRow = 0;
-	window->textColumnOffset = 0;
+	window->textColumnOffset = (getGameType() == GType_ELVIRA2) ? 4 : 0;
 	window->textLength = 0;
 	window->scrollY = 0;
 }


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list