diff options
author | Arnaud Boutonné | 2010-08-17 19:04:04 +0000 |
---|---|---|
committer | Arnaud Boutonné | 2010-08-17 19:04:04 +0000 |
commit | bdedf90c59ef28a999a3d13d8d2987f896cf31a6 (patch) | |
tree | 2808ebadb916e3f2f11af32009e37d4bcfaa0848 | |
parent | b2cbc3a42905b16589e1e5e93a119b84bf0f2f22 (diff) | |
download | scummvm-rg350-bdedf90c59ef28a999a3d13d8d2987f896cf31a6.tar.gz scummvm-rg350-bdedf90c59ef28a999a3d13d8d2987f896cf31a6.tar.bz2 scummvm-rg350-bdedf90c59ef28a999a3d13d8d2987f896cf31a6.zip |
Suppress one more useless debug message
svn-id: r52162
-rw-r--r-- | engines/gob/sound/sound.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/engines/gob/sound/sound.cpp b/engines/gob/sound/sound.cpp index 83da3e06c2..5abc94d025 100644 --- a/engines/gob/sound/sound.cpp +++ b/engines/gob/sound/sound.cpp @@ -613,7 +613,6 @@ void Sound::cdPlay(const char *trackName) { debugC(1, kDebugSound, "CDROM: Playing track \"%s\"", trackName); if ((_vm->getGameType() == kGameTypeFascination) && !scumm_stricmp(trackName, "boscle")) { - warning("Using bosscle instead of boscle"); _cdrom->startTrack("bosscle"); } else _cdrom->startTrack(trackName); |