mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
Try to make drmccoy happy again (is that even possible? :P )
svn-id: r47818
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user