aboutsummaryrefslogtreecommitdiff
path: root/queen
diff options
context:
space:
mode:
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;