diff options
author | Johannes Schickel | 2014-05-27 02:04:08 +0200 |
---|---|---|
committer | Johannes Schickel | 2014-05-27 02:04:08 +0200 |
commit | 30d64edac449cde1f1c387b817ec33446ddd4698 (patch) | |
tree | 948bfa747ca1309ba50f45b4803628ec3e661f95 /engines/parallaction | |
parent | 07c9fea9cbde6ca260e5e8be99f976a51752b4d7 (diff) | |
download | scummvm-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/parallaction')
-rw-r--r-- | engines/parallaction/debug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/debug.cpp b/engines/parallaction/debug.cpp index e4239eb786..a7087c64d7 100644 --- a/engines/parallaction/debug.cpp +++ b/engines/parallaction/debug.cpp @@ -33,7 +33,7 @@ Debugger::Debugger(Parallaction *vm) : GUI::Debugger() { _vm = vm; - registerCmd("continue", WRAP_METHOD(Debugger, Cmd_Exit)); + registerCmd("continue", WRAP_METHOD(Debugger, cmdExit)); registerCmd("location", WRAP_METHOD(Debugger, Cmd_Location)); registerCmd("give", WRAP_METHOD(Debugger, Cmd_Give)); registerCmd("zones", WRAP_METHOD(Debugger, Cmd_Zones)); |