aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel
diff options
context:
space:
mode:
authorMax Horn2010-12-07 18:54:21 +0000
committerMax Horn2010-12-07 18:54:21 +0000
commit6edc86a19b6060c9f0f257b05ff711b021910de4 (patch)
treea22172aa4624fb14c6e0fda4c21c09ec4a1e93b3 /engines/tinsel
parentce0f0bd0560d713aeddb45c16506cc9d2387c136 (diff)
downloadscummvm-rg350-6edc86a19b6060c9f0f257b05ff711b021910de4.tar.gz
scummvm-rg350-6edc86a19b6060c9f0f257b05ff711b021910de4.tar.bz2
scummvm-rg350-6edc86a19b6060c9f0f257b05ff711b021910de4.zip
DEBUG: Let GUI::Debugger::preEnter and postEnter (un)pause the engine
svn-id: r54815
Diffstat (limited to 'engines/tinsel')
-rw-r--r--engines/tinsel/debugger.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/engines/tinsel/debugger.h b/engines/tinsel/debugger.h
index e3e7e7cd48..e803f16566 100644
--- a/engines/tinsel/debugger.h
+++ b/engines/tinsel/debugger.h
@@ -33,15 +33,16 @@ namespace Tinsel {
class TinselEngine;
class Console: public GUI::Debugger {
-protected:
+public:
+ Console();
+ virtual ~Console();
+
+private:
bool cmd_item(int argc, const char **argv);
bool cmd_scene(int argc, const char **argv);
bool cmd_music(int argc, const char **argv);
bool cmd_sound(int argc, const char **argv);
bool cmd_string(int argc, const char **argv);
-public:
- Console();
- virtual ~Console();
};
} // End of namespace Tinsel