diff options
Diffstat (limited to 'simon')
-rw-r--r-- | simon/debugger.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/simon/debugger.cpp b/simon/debugger.cpp index 9a080e6248..6a529010c8 100644 --- a/simon/debugger.cpp +++ b/simon/debugger.cpp @@ -127,9 +127,9 @@ bool Debugger::Cmd_PlaySound(int argc, const char **argv) { if (sound <= range) _vm->_sound->playEffects(sound); else - DebugPrintf("Voice out of range (0 - %d)\n", range); + DebugPrintf("Sound out of range (0 - %d)\n", range); } else - DebugPrintf("Syntax: voice <voicenum>\n"); + DebugPrintf("Syntax: sound <soundnum>\n"); return true; } |