aboutsummaryrefslogtreecommitdiff
path: root/engines/cine
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/cine
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/cine')
-rw-r--r--engines/cine/console.cpp6
-rw-r--r--engines/cine/console.h4
2 files changed, 0 insertions, 10 deletions
diff --git a/engines/cine/console.cpp b/engines/cine/console.cpp
index 87633a2644..9a006bf25e 100644
--- a/engines/cine/console.cpp
+++ b/engines/cine/console.cpp
@@ -34,10 +34,4 @@ CineConsole::CineConsole(CineEngine *vm) : GUI::Debugger(), _vm(vm) {
CineConsole::~CineConsole() {
}
-void CineConsole::preEnter() {
-}
-
-void CineConsole::postEnter() {
-}
-
} // End of namespace Cine
diff --git a/engines/cine/console.h b/engines/cine/console.h
index 256ec16ce6..2f24b3be46 100644
--- a/engines/cine/console.h
+++ b/engines/cine/console.h
@@ -37,10 +37,6 @@ public:
CineConsole(CineEngine *vm);
virtual ~CineConsole(void);
-protected:
- virtual void preEnter();
- virtual void postEnter();
-
private:
CineEngine *_vm;
};