aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/custom.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2012-08-22 22:35:42 +1000
committerPaul Gilbert2012-08-23 22:05:22 +1000
commit93e10b52108e84e4db0e05a10d274a90e6cc50ff (patch)
tree1ab72d5fc3e4a9ae7a677c6c77f13f4ce26caf4b /engines/tony/custom.cpp
parentb1486aa5feb3fa074e91cb8436054608119062ed (diff)
downloadscummvm-rg350-93e10b52108e84e4db0e05a10d274a90e6cc50ff.tar.gz
scummvm-rg350-93e10b52108e84e4db0e05a10d274a90e6cc50ff.tar.bz2
scummvm-rg350-93e10b52108e84e4db0e05a10d274a90e6cc50ff.zip
TONY: Removed some debug warnings which aren't needed any longer
Diffstat (limited to 'engines/tony/custom.cpp')
-rw-r--r--engines/tony/custom.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/engines/tony/custom.cpp b/engines/tony/custom.cpp
index 6853cf51a0..e082e5fcde 100644
--- a/engines/tony/custom.cpp
+++ b/engines/tony/custom.cpp
@@ -2122,8 +2122,6 @@ void ThreadFadeOutMusic(CORO_PARAM, const void *nMusic) {
_ctx->startVolume = g_vm->getMusicVolume(nChannel);
- debug("Start FadeOut Music");
-
for (_ctx->i = 16; _ctx->i > 0 && !GLOBALS._bFadeOutStop; _ctx->i--) {
if (_ctx->i * 4 < _ctx->startVolume)
g_vm->setMusicVolume(nChannel, _ctx->i * 4);
@@ -2138,8 +2136,6 @@ void ThreadFadeOutMusic(CORO_PARAM, const void *nMusic) {
if (nChannel == 2)
g_vm->stopMusic(2);
- debug("End FadeOut Music");
-
CORO_KILL_SELF();
CORO_END_CODE;