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/saga | |
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/saga')
-rw-r--r-- | engines/saga/console.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/saga/console.cpp b/engines/saga/console.cpp index 042635e3e3..0b801eef3e 100644 --- a/engines/saga/console.cpp +++ b/engines/saga/console.cpp @@ -35,7 +35,7 @@ namespace Saga { Console::Console(SagaEngine *vm) : GUI::Debugger() { _vm = vm; - registerCmd("continue", WRAP_METHOD(Console, Cmd_Exit)); + registerCmd("continue", WRAP_METHOD(Console, cmdExit)); // Actor commands registerCmd("actor_walk_to", WRAP_METHOD(Console, cmdActorWalkTo)); |