mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-02 17:03:13 +00:00
WINTERMUTE: Another fix for c++11 compilation
This commit is contained in:
parent
04c0b7360c
commit
6f8075833f
@ -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);
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user