Try to make drmccoy happy again (is that even possible? :P )

svn-id: r47818
This commit is contained in:
Filippos Karapetis
2010-02-02 17:33:52 +00:00
parent 50e6b0283f
commit af6648fbb0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -765,7 +765,7 @@ reg_t kCreateTextBitmap(EngineState *s, int argc, reg_t *argv) {
// 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;
}
+1 -1
View File
@@ -31,7 +31,7 @@ namespace Sci {
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;