[Scummvm-cvs-logs] SF.net SVN: scummvm:[44229] scummvm/trunk/engines/cine/gfx.cpp

lordhoto at users.sourceforge.net lordhoto at users.sourceforge.net
Mon Sep 21 03:14:51 CEST 2009


Revision: 44229
          http://scummvm.svn.sourceforge.net/scummvm/?rev=44229&view=rev
Author:   lordhoto
Date:     2009-09-21 01:14:50 +0000 (Mon, 21 Sep 2009)

Log Message:
-----------
Fix box outline color for FW Amiga.

Modified Paths:
--------------
    scummvm/trunk/engines/cine/gfx.cpp

Modified: scummvm/trunk/engines/cine/gfx.cpp
===================================================================
--- scummvm/trunk/engines/cine/gfx.cpp	2009-09-20 23:56:42 UTC (rev 44228)
+++ scummvm/trunk/engines/cine/gfx.cpp	2009-09-21 01:14:50 UTC (rev 44229)
@@ -286,7 +286,7 @@
 	ty += 9;
 	if (color >= 0) {
 		drawPlainBox(x, ty, width, 4, color);
-		drawDoubleBorder(x, y, width, ty - y + 4, g_cine->getPlatform() == Common::kPlatformAmiga ? 1 : 2);
+		drawDoubleBorder(x, y, width, ty - y + 4, g_cine->getPlatform() == Common::kPlatformAmiga ? 18 : 2);
 	}
 }
 
@@ -804,7 +804,7 @@
 	}
 
 	drawPlainBox(x, ty, width, 4, _messageBg);
-	drawDoubleBorder(x, y, width, ty - y + 4, g_cine->getPlatform() == Common::kPlatformAmiga ? 1 : 2);
+	drawDoubleBorder(x, y, width, ty - y + 4, g_cine->getPlatform() == Common::kPlatformAmiga ? 18 : 2);
 }
 
 /*! \brief Draw text input box
@@ -877,7 +877,7 @@
 
 	ty += 9;
 	drawPlainBox(x, ty, width, 4, _messageBg);
-	drawDoubleBorder(x, y, width, ty - y + 4, g_cine->getPlatform() == Common::kPlatformAmiga ? 1 : 2);
+	drawDoubleBorder(x, y, width, ty - y + 4, g_cine->getPlatform() == Common::kPlatformAmiga ? 18 : 2);
 }
 
 /*! \brief Fade to black


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