aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/debugger/debugger_controller.cpp
AgeCommit message (Collapse)Author
2019-09-15WINTERMUTE: Fix MSVC WarningD G Turner
This is due to the _lastLine variable being unsigned, but having -1 assigned to it as a default / invalid value. This could probably be assigned 0 with no issues, but since this is exposed, this warning is fixed instead by assigning the unsigned equivalent of -1 so no dependent code will see a change.
2019-05-27WINTERMUTE: Remove unused variableFilippos Karapetis
2016-09-03JANITORIAL: Make GPL headers uniformEugene Sandulenko
2016-07-24WINTERMUTE: Another fix for c++11 compilationEugene Sandulenko
2016-03-01WINTERMUTE: Add Watch functionalityTobia Tesan
2016-03-01WINTERMUTE: Add print and set commands to debuggerTobia Tesan
2016-03-01WINTERMUTE: Add source functionality in debuggerTobia Tesan
2016-03-01WINTERMUTE: Add DebuggerControllerTobia Tesan