try {
loadWavFile(fd, &b);
} catch (sg_exception& e) {
- throw sg_io_exception(e.getFormattedMessage() + " for " + path.str());
+ throw sg_io_exception(e.getFormattedMessage() + "\nfor: " + path.str());
}
ALvoid* data = b.data;
bool res = load(sample_name, &sample_data, &format, &size, &freq, &block);
if (res == false) return NO_BUFFER;
} catch (sg_exception& e) {
- SG_LOG(SG_SOUND, SG_ALERT,
- "failed to load sound buffer: " << e.getFormattedMessage());
+ SG_LOG(SG_SOUND, SG_POPUP,
+ "failed to load sound buffer:\n" << e.getFormattedMessage());
sample->set_buffer( SGSoundMgr::FAILED_BUFFER );
return FAILED_BUFFER;
}