aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2004-01-28 02:45:00 +0000
committerTravis Howell2004-01-28 02:45:00 +0000
commitd417394a25ccdca6b0ce44f33eef9c45b15082a3 (patch)
treed2d4a02d61e8e3ab5a62dd640b6689af46000647
parent7dd78f11d3cc5f50b1684b9e03fa13ab04908a68 (diff)
downloadscummvm-rg350-d417394a25ccdca6b0ce44f33eef9c45b15082a3.tar.gz
scummvm-rg350-d417394a25ccdca6b0ce44f33eef9c45b15082a3.tar.bz2
scummvm-rg350-d417394a25ccdca6b0ce44f33eef9c45b15082a3.zip
Ooops
svn-id: r12650
-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;
}