aboutsummaryrefslogtreecommitdiff
path: root/engines/mads
diff options
context:
space:
mode:
authorJohannes Schickel2014-05-27 02:04:08 +0200
committerJohannes Schickel2014-05-27 02:04:08 +0200
commit30d64edac449cde1f1c387b817ec33446ddd4698 (patch)
tree948bfa747ca1309ba50f45b4803628ec3e661f95 /engines/mads
parent07c9fea9cbde6ca260e5e8be99f976a51752b4d7 (diff)
downloadscummvm-rg350-30d64edac449cde1f1c387b817ec33446ddd4698.tar.gz
scummvm-rg350-30d64edac449cde1f1c387b817ec33446ddd4698.tar.bz2
scummvm-rg350-30d64edac449cde1f1c387b817ec33446ddd4698.zip
ALL: Make Debugger command function names conform to our guidelines.
Diffstat (limited to 'engines/mads')
-rw-r--r--engines/mads/debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/debugger.cpp b/engines/mads/debugger.cpp
index e82b39f8c2..f301b6c392 100644
--- a/engines/mads/debugger.cpp
+++ b/engines/mads/debugger.cpp
@@ -29,7 +29,7 @@ namespace MADS {
Debugger::Debugger(MADSEngine *vm) : GUI::Debugger(), _vm(vm) {
_showMousePos = false;
- registerCmd("continue", WRAP_METHOD(Debugger, Cmd_Exit));
+ registerCmd("continue", WRAP_METHOD(Debugger, cmdExit));
registerCmd("mouse", WRAP_METHOD(Debugger, Cmd_Mouse));
registerCmd("scene", WRAP_METHOD(Debugger, Cmd_LoadScene));
registerCmd("show_hotspots", WRAP_METHOD(Debugger, Cmd_ShowHotSpots));