aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorFilippos Karapetis2010-06-24 13:44:27 +0000
committerFilippos Karapetis2010-06-24 13:44:27 +0000
commit59c908e97d8c2c71e4823cb04059f7bc56e3c414 (patch)
tree94f3f647149b4b7d3b03811fde0338721b75caac /engines
parent4b2661c06a77d36fe6e22fc9d55ab6a93b946675 (diff)
downloadscummvm-rg350-59c908e97d8c2c71e4823cb04059f7bc56e3c414.tar.gz
scummvm-rg350-59c908e97d8c2c71e4823cb04059f7bc56e3c414.tar.bz2
scummvm-rg350-59c908e97d8c2c71e4823cb04059f7bc56e3c414.zip
Changed a warning which seems like regular SCI behavior into a debugC
svn-id: r50218
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/sound/soundcmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sound/soundcmd.cpp b/engines/sci/sound/soundcmd.cpp
index 043f2b8516..5e0f45e166 100644
--- a/engines/sci/sound/soundcmd.cpp
+++ b/engines/sci/sound/soundcmd.cpp
@@ -678,7 +678,7 @@ void SoundCommandParser::cmdFadeSound(reg_t obj, int16 value) {
// If sound is not playing currently, set signal directly
if (musicSlot->status != kSoundPlaying) {
- warning("cmdFadeSound: fading requested, but sound is currently not playing");
+ debugC(2, kDebugLevelSound, "cmdFadeSound: fading requested, but sound is currently not playing");
writeSelectorValue(_segMan, obj, SELECTOR(signal), SIGNAL_OFFSET);
return;
}