aboutsummaryrefslogtreecommitdiff
path: root/queen
diff options
context:
space:
mode:
authorJoost Peters2005-01-06 11:46:32 +0000
committerJoost Peters2005-01-06 11:46:32 +0000
commit57eaf5c92504d1fbd08f0c415ec7e66fb44a6e66 (patch)
tree032a6703cf0f0f30322ca2090217964ddf3e3b8b /queen
parent7da6fd64e029292059dda932c3a6b60777ec306c (diff)
downloadscummvm-rg350-57eaf5c92504d1fbd08f0c415ec7e66fb44a6e66.tar.gz
scummvm-rg350-57eaf5c92504d1fbd08f0c415ec7e66fb44a6e66.tar.bz2
scummvm-rg350-57eaf5c92504d1fbd08f0c415ec7e66fb44a6e66.zip
Change warning to debug
svn-id: r16440
Diffstat (limited to 'queen')
-rw-r--r--queen/music.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/queen/music.cpp b/queen/music.cpp
index 899c228ec2..79f11fbdf2 100644
--- a/queen/music.cpp
+++ b/queen/music.cpp
@@ -82,7 +82,7 @@ bool MusicPlayer::queueSong(uint16 songNum) {
if (songNum >= _numSongs && songNum < 1000) {
// this happens at the end of the car chase, where we try to play song 176,
// see Sound::_tune[], entry 39
- warning("Trying to queue an invalid song number %d, max %d", songNum, _numSongs);
+ debug(3, "Trying to queue an invalid song number %d, max %d", songNum, _numSongs);
return false;
}
uint8 emptySlots = 0;