aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v7he.cpp
diff options
context:
space:
mode:
authorTravis Howell2006-02-11 09:33:29 +0000
committerTravis Howell2006-02-11 09:33:29 +0000
commit7ee49b03305087071284b8629abf816fa7558d49 (patch)
treed8def2c556c7482389f9224ef190d566c3dbbb61 /scumm/script_v7he.cpp
parent0aa701d75971e0461dbd8cfa8c2397c0c3ab1b4a (diff)
downloadscummvm-rg350-7ee49b03305087071284b8629abf816fa7558d49.tar.gz
scummvm-rg350-7ee49b03305087071284b8629abf816fa7558d49.tar.bz2
scummvm-rg350-7ee49b03305087071284b8629abf816fa7558d49.zip
Cleanup HE debug msgs
svn-id: r20506
Diffstat (limited to 'scumm/script_v7he.cpp')
-rw-r--r--scumm/script_v7he.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/scumm/script_v7he.cpp b/scumm/script_v7he.cpp
index ef0f1addd5..0c1b867afa 100644
--- a/scumm/script_v7he.cpp
+++ b/scumm/script_v7he.cpp
@@ -437,12 +437,10 @@ void ScummEngine_v70he::o70_startSound() {
var = pop();
_heSndSoundId = pop();
_sound->setSoundVar(_heSndSoundId, var, value);
- debug(0,"o70_startSound: case 23 (snd %d, var %d, value %d)", _heSndSoundId, var, value);
break;
case 25:
value = pop();
_heSndSoundId = pop();
- debug(0, "o70_startSound: case 25 (ID %d, Offset 0, Channel 0, Flags 8)", _heSndSoundId);
_sound->addSoundToQueue(_heSndSoundId, 0, 0, 8);
case 56:
_heSndFlags |= 16;
@@ -469,7 +467,6 @@ void ScummEngine_v70he::o70_startSound() {
_heSndFlags |= 1;
break;
case 255:
- debug(0, "o70_startSound (ID %d, Offset %d, Channel %d, Flags %d)", _heSndSoundId, _heSndOffset, _heSndChannel, _heSndFlags);
_sound->addSoundToQueue(_heSndSoundId, _heSndOffset, _heSndChannel, _heSndFlags);
_heSndFlags = 0;
break;
@@ -783,7 +780,6 @@ void ScummEngine_v70he::o70_kernelSetFunctions() {
num = getStackList(args, ARRAYSIZE(args));
- debug(1, "o70_kernelSetFunctions: case %d (param count %d)", args[0], num);
switch (args[0]) {
case 1:
// Used to restore images when decorating cake in
@@ -975,7 +971,7 @@ void ScummEngine_v70he::o70_readINI() {
default:
error("o70_readINI: default type %d", type);
}
- debug(0, "o70_readINI: Option %s", option);
+ debug(1, "o70_readINI: Option %s", option);
}
void ScummEngine_v70he::o70_writeINI() {
@@ -993,14 +989,14 @@ void ScummEngine_v70he::o70_writeINI() {
switch (type) {
case 1: // number
ConfMan.set((char *)option, value);
- debug(0, "o70_writeINI: Option %s Value %d", option, value);
+ debug(1, "o70_writeINI: Option %s Value %d", option, value);
break;
case 2: // string
convertMessageToString(_scriptPointer, string, sizeof(string));
len = resStrLen(_scriptPointer);
_scriptPointer += len + 1;
ConfMan.set((char *)option, (char *)string);
- debug(0, "o70_writeINI: Option %s String %s", option, string);
+ debug(1, "o70_writeINI: Option %s String %s", option, string);
break;
default:
error("o70_writeINI: default type %d", type);