aboutsummaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorJuan Linietsky2015-04-12 16:45:59 -0300
committerJuan Linietsky2015-04-12 16:45:59 -0300
commit2dfa1279eaed14c4d42d431fc62f3e8c881c2d38 (patch)
treee219ec21cbde6ba7643ec4d9c9a49f67f7ae45e0 /platform
parent87c51b6fc0504e4943ee3edec5e0fa06097d8b96 (diff)
downloadgodot-2dfa1279eaed14c4d42d431fc62f3e8c881c2d38.tar.gz
godot-2dfa1279eaed14c4d42d431fc62f3e8c881c2d38.tar.zst
godot-2dfa1279eaed14c4d42d431fc62f3e8c881c2d38.zip
improved save path error messages for scene, textures and audio, fixes #1514
Diffstat (limited to '')
-rw-r--r--platform/x11/os_x11.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/x11/os_x11.cpp b/platform/x11/os_x11.cpp
index 4dc10c5b3..e65503e71 100644
--- a/platform/x11/os_x11.cpp
+++ b/platform/x11/os_x11.cpp
@@ -266,6 +266,7 @@ void OS_X11::initialize(const VideoMode& p_desired,int p_video_driver,int p_audi
continue;
if (AudioDriverManagerSW::get_driver(i)->init()==OK) {
success=true;
+ print_line("Audio Driver Failed: "+String(AudioDriverManagerSW::get_driver(p_audio_driver)->get_name()));
print_line("Using alternate audio driver: "+String(AudioDriverManagerSW::get_driver(i)->get_name()));
break;
}