[Scummvm-cvs-logs] SF.net SVN: scummvm: [28010] scummvm/trunk/engines/agi/agi.h

buddha_ at users.sourceforge.net buddha_ at users.sourceforge.net
Tue Jul 10 17:45:30 CEST 2007


Revision: 28010
          http://scummvm.svn.sourceforge.net/scummvm/?rev=28010&view=rev
Author:   buddha_
Date:     2007-07-10 08:45:30 -0700 (Tue, 10 Jul 2007)

Log Message:
-----------
Change AgiTextColor's default color to black text on white background.

Modified Paths:
--------------
    scummvm/trunk/engines/agi/agi.h

Modified: scummvm/trunk/engines/agi/agi.h
===================================================================
--- scummvm/trunk/engines/agi/agi.h	2007-07-10 15:28:43 UTC (rev 28009)
+++ scummvm/trunk/engines/agi/agi.h	2007-07-10 15:45:30 UTC (rev 28010)
@@ -320,8 +320,8 @@
 
 /** AGI text color (Background and foreground color). */
 struct AgiTextColor {
-	/** Creates an AGI text color. Uses white text on black background by default. */
-	AgiTextColor(int fgColor = 0x0F, int bgColor = 0x00) : fg(fgColor), bg(bgColor) {}
+	/** Creates an AGI text color. Uses black text on white background by default. */
+	AgiTextColor(int fgColor = 0x00, int bgColor = 0x0F) : fg(fgColor), bg(bgColor) {}
 
 	/** Get an AGI text color with swapped foreground and background color. */
 	AgiTextColor swap() const { return AgiTextColor(bg, fg); }


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