mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-20 14:10:39 -04:00
protect against assertion
This commit is contained in:
parent
ef26d66a3c
commit
b9a108f9cd
@ -104,9 +104,11 @@ MilesAudioManager() {
|
||||
// Load the downloadable sounds file:
|
||||
|
||||
if (_dls_field == NULL) {
|
||||
HDLSDEVICE dls;
|
||||
HDLSDEVICE dls = NULL;
|
||||
AIL_quick_handles(0, 0, &dls);
|
||||
nassertv(dls != NULL);
|
||||
if (dls == NULL) {
|
||||
audio_error(" Unable to open DLS. " << AIL_last_error());
|
||||
} else {
|
||||
string dls_file = Filename(audio_dls_file).to_os_specific();
|
||||
if (dls_file.empty()) {
|
||||
get_gm_file_path(dls_file);
|
||||
@ -119,6 +121,8 @@ MilesAudioManager() {
|
||||
nassertv(_dls_field == NULL);
|
||||
audio_debug(" AIL_DLS_load_file(dls, " << dls_file << ", 0)");
|
||||
_dls_field = AIL_DLS_load_file(dls, dls_file.c_str(), 0);
|
||||
}
|
||||
|
||||
if (!_dls_field) {
|
||||
audio_error(" AIL_DLS_load_file() failed, \""<<AIL_last_error() <<"\" Switching to hardware midi");
|
||||
AIL_quick_shutdown();
|
||||
|
Loading…
x
Reference in New Issue
Block a user