aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--simon/debugger.cpp4
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;
}