aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25
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/sword25
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/sword25')
-rw-r--r--engines/sword25/console.cpp6
-rw-r--r--engines/sword25/console.h4
2 files changed, 0 insertions, 10 deletions
diff --git a/engines/sword25/console.cpp b/engines/sword25/console.cpp
index 014c748182..902d9a5b72 100644
--- a/engines/sword25/console.cpp
+++ b/engines/sword25/console.cpp
@@ -34,10 +34,4 @@ Sword25Console::Sword25Console(Sword25Engine *vm) : GUI::Debugger(), _vm(vm) {
Sword25Console::~Sword25Console() {
}
-void Sword25Console::preEnter() {
-}
-
-void Sword25Console::postEnter() {
-}
-
} // End of namespace Sword25
diff --git a/engines/sword25/console.h b/engines/sword25/console.h
index dd053c19f6..dcf8082d3c 100644
--- a/engines/sword25/console.h
+++ b/engines/sword25/console.h
@@ -37,10 +37,6 @@ public:
Sword25Console(Sword25Engine *vm);
virtual ~Sword25Console(void);
-protected:
- virtual void preEnter();
- virtual void postEnter();
-
private:
Sword25Engine *_vm;
};