aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
};
}