aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/debugger/debugger_controller.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/debugger/debugger_controller.h')
-rw-r--r--engines/wintermute/debugger/debugger_controller.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/wintermute/debugger/debugger_controller.h b/engines/wintermute/debugger/debugger_controller.h
index b4119b56d3..7af2a039b1 100644
--- a/engines/wintermute/debugger/debugger_controller.h
+++ b/engines/wintermute/debugger/debugger_controller.h
@@ -51,7 +51,7 @@ struct TopEntry {
};
class DebuggerController : public ScriptMonitor {
- ListingProvider *_listingProvider;
+ SourceListingProvider *_sourceListingProvider;
const WintermuteEngine *_engine;
DebuggableScript *_lastScript;
uint32 _lastDepth;
@@ -83,6 +83,8 @@ public:
* @brief continue execution and don't step until the current activation record is popped
*/
Error stepFinish();
+ Error setSourcePath(const Common::String &sourcePath);
+ Common::String getSourcePath() const;
Listing *getListing(Error* &err);
void showFps(bool show);
/**