diff options
author | Filippos Karapetis | 2010-06-24 13:44:27 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-06-24 13:44:27 +0000 |
commit | 59c908e97d8c2c71e4823cb04059f7bc56e3c414 (patch) | |
tree | 94f3f647149b4b7d3b03811fde0338721b75caac | |
parent | 4b2661c06a77d36fe6e22fc9d55ab6a93b946675 (diff) | |
download | scummvm-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
-rw-r--r-- | engines/sci/sound/soundcmd.cpp | 2 |
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; } |