[Scummvm-cvs-logs] SF.net SVN: scummvm: [25152] residual/trunk/lua.cpp
aquadran at users.sourceforge.net
aquadran at users.sourceforge.net
Sun Jan 21 17:09:21 CET 2007
Revision: 25152
http://scummvm.svn.sourceforge.net/scummvm/?rev=25152&view=rev
Author: aquadran
Date: 2007-01-21 08:09:21 -0800 (Sun, 21 Jan 2007)
Log Message:
-----------
hicolor param can be ignored, used only in credits screen, seems not needed
Modified Paths:
--------------
residual/trunk/lua.cpp
Modified: residual/trunk/lua.cpp
===================================================================
--- residual/trunk/lua.cpp 2007-01-21 15:19:30 UTC (rev 25151)
+++ residual/trunk/lua.cpp 2007-01-21 16:09:21 UTC (rev 25152)
@@ -2251,8 +2251,8 @@
textObject->setFont(check_font(2));
else if (strmatch(key_text, "fgcolor"))
textObject->setFGColor(check_color(2));
- else if (strmatch(key_text, "hicolor"))
- warning("getTextObjectParams 'hicolor'");
+ else if (strmatch(key_text, "hicolor"));
+ // this is only used in credits screen, can be ignored, seems not needed
else if (strmatch(key_text, "disabled"))
textObject->setDisabled(atoi(lua_getstring(lua_getresult(2))) != 0);
else if (strmatch(key_text, "center"))
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