diff options
| author | Max Horn | 2003-12-27 15:26:04 +0000 | 
|---|---|---|
| committer | Max Horn | 2003-12-27 15:26:04 +0000 | 
| commit | cfaa5ee357e2ac1d43fa0b7bd79457bebd81a295 (patch) | |
| tree | 9ada23c2edf7225b38ea29e3bb14eb6af083eb92 | |
| parent | 87a168bc1b11df058ea32ced414ee8fd74313d70 (diff) | |
| download | scummvm-rg350-cfaa5ee357e2ac1d43fa0b7bd79457bebd81a295.tar.gz scummvm-rg350-cfaa5ee357e2ac1d43fa0b7bd79457bebd81a295.tar.bz2 scummvm-rg350-cfaa5ee357e2ac1d43fa0b7bd79457bebd81a295.zip | |
nicer error
svn-id: r11968
| -rw-r--r-- | scumm/imuse_digi.cpp | 4 | 
1 files 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; | 
