[Scummvm-cvs-logs] SF.net SVN: scummvm: [28076] scummvm/trunk/engines/saga/interface.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Sat Jul 14 19:39:47 CEST 2007


Revision: 28076
          http://scummvm.svn.sourceforge.net/scummvm/?rev=28076&view=rev
Author:   thebluegr
Date:     2007-07-14 10:39:47 -0700 (Sat, 14 Jul 2007)

Log Message:
-----------
ITE: Fixed some of the incorrectly drawn dots of the menu buttons

Modified Paths:
--------------
    scummvm/trunk/engines/saga/interface.cpp

Modified: scummvm/trunk/engines/saga/interface.cpp
===================================================================
--- scummvm/trunk/engines/saga/interface.cpp	2007-07-14 17:30:44 UTC (rev 28075)
+++ scummvm/trunk/engines/saga/interface.cpp	2007-07-14 17:39:47 UTC (rev 28076)
@@ -2016,10 +2016,10 @@
 	((byte *)ds->getBasePtr(x, ye))[0] = cornerColor;
 	((byte *)ds->getBasePtr(xe, y))[0] = cornerColor;
 	((byte *)ds->getBasePtr(xe, ye))[0] = cornerColor;
-	ds->hLine(x + 1, y, x + 1 + w - 2, frameColor);
-	ds->hLine(x + 1, ye, x + 1 + w - 2, frameColor);
-	ds->vLine(x, y + 1, y + 1 + h - 2, frameColor);
-	ds->vLine(xe, y + 1, y + 1 + h - 2, frameColor);
+	ds->hLine(x + 1, y, x + w - 2, frameColor);
+	ds->hLine(x + 1, ye, x + w - 2, frameColor);
+	ds->vLine(x, y + 1, y + h - 2, frameColor);
+	ds->vLine(xe, y + 1, y + h - 2, frameColor);
 
 	x++;
 	y++;


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