diff options
Diffstat (limited to 'engines/gob/sound.cpp')
| -rw-r--r-- | engines/gob/sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/sound.cpp b/engines/gob/sound.cpp index 6a7446d63d..0c1e612b9f 100644 --- a/engines/gob/sound.cpp +++ b/engines/gob/sound.cpp @@ -99,7 +99,7 @@ void Snd::playSample(Snd::SoundDesc *sndDesc, int16 repCount, int16 frequency) { frequency = sndDesc->frequency; if (frequency <= 0) { - warning("Attempted to play a sample with a frequency of %d", frequency); + warning("Attempted to play a sample with a frequency of %d (sndDesc->freq = %d)", frequency, sndDesc->frequency); return; } // assert(frequency > 0); |
