diff options
author | Max Horn | 2010-11-01 21:37:47 +0000 |
---|---|---|
committer | Max Horn | 2010-11-01 21:37:47 +0000 |
commit | a7248a0601a5b8e34fa9cccc3543e93fa9ab6649 (patch) | |
tree | b2e3e2b6e15de28bd203a7ab8e3024928ae592ce /engines/toon | |
parent | cba30ee716a3679d86656d6f1aade3e33d3130d7 (diff) | |
download | scummvm-rg350-a7248a0601a5b8e34fa9cccc3543e93fa9ab6649.tar.gz scummvm-rg350-a7248a0601a5b8e34fa9cccc3543e93fa9ab6649.tar.bz2 scummvm-rg350-a7248a0601a5b8e34fa9cccc3543e93fa9ab6649.zip |
ENGINES: Replace many printfs by warning/debug/debugN
svn-id: r54031
Diffstat (limited to 'engines/toon')
-rw-r--r-- | engines/toon/script_func.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/toon/script_func.cpp b/engines/toon/script_func.cpp index f571f324ef..c62211a1ae 100644 --- a/engines/toon/script_func.cpp +++ b/engines/toon/script_func.cpp @@ -1072,25 +1072,25 @@ int32 ScriptFunc::sys_Cmd_Play_Sfx(EMCState *state) { } int32 ScriptFunc::sys_Cmd_Set_Ambient_Sfx(EMCState *state) { - //printf("Ambient Sfx : %d %d %d %d\n", stackPos(0), stackPos(1), stackPos(2), stackPos(3)); + //debug("Ambient Sfx : %d %d %d %d", stackPos(0), stackPos(1), stackPos(2), stackPos(3)); _vm->getAudioManager()->startAmbientSFX(stackPos(0), stackPos(1), stackPos(2), stackPos(3)); return 0; } int32 ScriptFunc::sys_Cmd_Kill_Ambient_Sfx(EMCState *state) { - //printf("Kill Sfx : %d \n", stackPos(0)); + //debug("Kill Sfx : %d", stackPos(0)); _vm->getAudioManager()->killAmbientSFX(stackPos(0)); return 0; } int32 ScriptFunc::sys_Cmd_Set_Ambient_Sfx_Plus(EMCState *state) { - //printf("Ambient Sfx Plus: %d %d %d %d %d %d %d %d\n", stackPos(0), stackPos(1), stackPos(2), stackPos(3), stackPos(4), stackPos(5), stackPos(6), stackPos(7)); + //debug("Ambient Sfx Plus: %d %d %d %d %d %d %d %d", stackPos(0), stackPos(1), stackPos(2), stackPos(3), stackPos(4), stackPos(5), stackPos(6), stackPos(7)); _vm->getAudioManager()->startAmbientSFX(stackPos(0), stackPos(1), stackPos(2), stackPos(3)); return 0; } int32 ScriptFunc::sys_Cmd_Set_Ambient_Volume(EMCState *state) { - //printf("Ambient Volume : %d %d \n", stackPos(0), stackPos(1)); + //debug("Ambient Volume : %d %d", stackPos(0), stackPos(1)); _vm->getAudioManager()->setAmbientSFXVolume(stackPos(0), stackPos(1)); return 0; } |