aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2016-07-24 23:15:44 +0300
committerEugene Sandulenko2016-07-24 23:15:44 +0300
commit6f8075833f6b3a6a351e7571f8df06d682fdd722 (patch)
tree8c15cc6c9c4b12cf7a0b0a770647d84b1c0b1000
parent04c0b7360cb30a7acf044c4c17d5e561428781fe (diff)
downloadscummvm-rg350-6f8075833f6b3a6a351e7571f8df06d682fdd722.tar.gz
scummvm-rg350-6f8075833f6b3a6a351e7571f8df06d682fdd722.tar.bz2
scummvm-rg350-6f8075833f6b3a6a351e7571f8df06d682fdd722.zip
WINTERMUTE: Another fix for c++11 compilation
-rw-r--r--engines/wintermute/debugger/debugger_controller.cpp2
-rw-r--r--engines/wintermute/debugger/debugger_controller.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/debugger/debugger_controller.cpp b/engines/wintermute/debugger/debugger_controller.cpp
index 2e021530f8..aef96ed9c9 100644
--- a/engines/wintermute/debugger/debugger_controller.cpp
+++ b/engines/wintermute/debugger/debugger_controller.cpp
@@ -147,7 +147,7 @@ void DebuggerController::onBreakpoint(const Breakpoint *breakpoint, DebuggableSc
DEBUGGER->notifyBreakpoint(script->dbgGetFilename().c_str(), script->_currentLine);
}
-void DebuggerController::notifyStep(DebuggableScript *script) override {
+void DebuggerController::notifyStep(DebuggableScript *script) {
_lastScript = script;
_lastLine = script->_currentLine;
DEBUGGER->notifyStep(script->dbgGetFilename().c_str(), script->_currentLine);
diff --git a/engines/wintermute/debugger/debugger_controller.h b/engines/wintermute/debugger/debugger_controller.h
index 8c720281db..345b42f0cb 100644
--- a/engines/wintermute/debugger/debugger_controller.h
+++ b/engines/wintermute/debugger/debugger_controller.h
@@ -112,7 +112,7 @@ public:
*/
void onBreakpoint(const Breakpoint *breakpoint, DebuggableScript *script);
void onWatch(const Watch *watch, DebuggableScript *script);
- void notifyStep(DebuggableScript *script);
+ void notifyStep(DebuggableScript *script) override;
};
}