aboutsummaryrefslogtreecommitdiff
path: root/engines/sword1
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/sword1
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/sword1')
-rw-r--r--engines/sword1/console.cpp6
-rw-r--r--engines/sword1/console.h4
2 files changed, 0 insertions, 10 deletions
diff --git a/engines/sword1/console.cpp b/engines/sword1/console.cpp
index 7a1c087dd5..79792c2208 100644
--- a/engines/sword1/console.cpp
+++ b/engines/sword1/console.cpp
@@ -34,10 +34,4 @@ SwordConsole::SwordConsole(SwordEngine *vm) : GUI::Debugger(), _vm(vm) {
SwordConsole::~SwordConsole() {
}
-void SwordConsole::preEnter() {
-}
-
-void SwordConsole::postEnter() {
-}
-
} // End of namespace Sword
diff --git a/engines/sword1/console.h b/engines/sword1/console.h
index 09d197363e..7ee8d2935f 100644
--- a/engines/sword1/console.h
+++ b/engines/sword1/console.h
@@ -37,10 +37,6 @@ public:
SwordConsole(SwordEngine *vm);
virtual ~SwordConsole(void);
-protected:
- virtual void preEnter();
- virtual void postEnter();
-
private:
SwordEngine *_vm;
};