[Scummvm-cvs-logs] SF.net SVN: scummvm:[47818] scummvm/trunk/engines/sci
thebluegr at users.sourceforge.net
thebluegr at users.sourceforge.net
Tue Feb 2 18:33:53 CET 2010
Revision: 47818
http://scummvm.svn.sourceforge.net/scummvm/?rev=47818&view=rev
Author: thebluegr
Date: 2010-02-02 17:33:52 +0000 (Tue, 02 Feb 2010)
Log Message:
-----------
Try to make drmccoy happy again (is that even possible? :P )
Modified Paths:
--------------
scummvm/trunk/engines/sci/engine/kernel32.cpp
scummvm/trunk/engines/sci/graphics/controls.h
Modified: scummvm/trunk/engines/sci/engine/kernel32.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/kernel32.cpp 2010-02-02 17:21:11 UTC (rev 47817)
+++ scummvm/trunk/engines/sci/engine/kernel32.cpp 2010-02-02 17:33:52 UTC (rev 47818)
@@ -765,7 +765,7 @@
// TODO: argument 0 is usually 0, and arguments 1 and 2 are usually 1
reg_t object = argv[3];
Common::String text = s->_segMan->getString(GET_SEL32(s->_segMan, object, text));
- debug("%s\n", text.c_str());
+ debug("%s", text.c_str());
return NULL_REG;
}
Modified: scummvm/trunk/engines/sci/graphics/controls.h
===================================================================
--- scummvm/trunk/engines/sci/graphics/controls.h 2010-02-02 17:21:11 UTC (rev 47817)
+++ scummvm/trunk/engines/sci/graphics/controls.h 2010-02-02 17:33:52 UTC (rev 47818)
@@ -31,7 +31,7 @@
enum controlStateFlags {
kControlStateEnabled = 0x0001, ///< 0001 - enabled buttons
kControlStateDisabled = 0x0004, ///< 0010 - grayed out buttons
- kControlStateFramed = 0x0008, ///< 1000 - widgets surrounded by a frame
+ kControlStateFramed = 0x0008 ///< 1000 - widgets surrounded by a frame
};
class GfxPorts;
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