From cfaa5ee357e2ac1d43fa0b7bd79457bebd81a295 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sat, 27 Dec 2003 15:26:04 +0000 Subject: nicer error svn-id: r11968 --- scumm/imuse_digi.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scumm/imuse_digi.cpp b/scumm/imuse_digi.cpp index 8ae35012c2..a5a2b53772 100644 --- a/scumm/imuse_digi.cpp +++ b/scumm/imuse_digi.cpp @@ -945,7 +945,7 @@ void IMuseDigital::startSound(int sound, byte *voc_src, int voc_size, int voc_ra *(uint16 *)(_channel[l].data + t * 4 + 2) = *(uint16 *)(ptr + t * 2); } } else { - error("Stereo 16 bit sound support not yet implemented"); + error("IMuseDigital::startSound() Stereo 16 bit sound support not yet implemented"); } _channel[l].size = size; } else if (_channel[l].bits == 8) { @@ -965,7 +965,7 @@ void IMuseDigital::startSound(int sound, byte *voc_src, int voc_size, int voc_ra } _channel[l].size = size; } else - error("Can't handle %d bit samples in iMuseDigital", _channel[l].bits); + error("IMuseDigital::startSound() Can't handle %d bit samples", _channel[l].bits); } _channel[l].mixerSize /= 25; _channel[l].toBeRemoved = false; -- cgit v1.2.3