summaryrefslogtreecommitdiff
path: root/src/audio_core/sdl2_sink.cpp
diff options
context:
space:
mode:
authorGravatar freiro2016-11-22 17:28:11 +0100
committerGravatar freiro2016-11-22 17:28:11 +0100
commit5dd31f204acf9763778e62c29bf2399de9daacfc (patch)
treeec12d44e65bf253e12335188c14bdee163126701 /src/audio_core/sdl2_sink.cpp
parentMerge pull request #2195 from Subv/factor_check (diff)
downloadyuzu-5dd31f204acf9763778e62c29bf2399de9daacfc.tar.gz
yuzu-5dd31f204acf9763778e62c29bf2399de9daacfc.tar.xz
yuzu-5dd31f204acf9763778e62c29bf2399de9daacfc.zip
Improve verbosity of audio errors with SDL_GetError()
Diffstat (limited to 'src/audio_core/sdl2_sink.cpp')
-rw-r--r--src/audio_core/sdl2_sink.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_core/sdl2_sink.cpp b/src/audio_core/sdl2_sink.cpp
index 75cc0d6dd..4b66cd826 100644
--- a/src/audio_core/sdl2_sink.cpp
+++ b/src/audio_core/sdl2_sink.cpp
@@ -25,7 +25,7 @@ struct SDL2Sink::Impl {
25 25
26SDL2Sink::SDL2Sink() : impl(std::make_unique<Impl>()) { 26SDL2Sink::SDL2Sink() : impl(std::make_unique<Impl>()) {
27 if (SDL_Init(SDL_INIT_AUDIO) < 0) { 27 if (SDL_Init(SDL_INIT_AUDIO) < 0) {
28 LOG_CRITICAL(Audio_Sink, "SDL_Init(SDL_INIT_AUDIO) failed"); 28 LOG_CRITICAL(Audio_Sink, "SDL_Init(SDL_INIT_AUDIO) failed with: %s", SDL_GetError());
29 impl->audio_device_id = 0; 29 impl->audio_device_id = 0;
30 return; 30 return;
31 } 31 }
@@ -45,7 +45,7 @@ SDL2Sink::SDL2Sink() : impl(std::make_unique<Impl>()) {
45 impl->audio_device_id = 45 impl->audio_device_id =
46 SDL_OpenAudioDevice(nullptr, false, &desired_audiospec, &obtained_audiospec, 0); 46 SDL_OpenAudioDevice(nullptr, false, &desired_audiospec, &obtained_audiospec, 0);
47 if (impl->audio_device_id <= 0) { 47 if (impl->audio_device_id <= 0) {
48 LOG_CRITICAL(Audio_Sink, "SDL_OpenAudioDevice failed"); 48 LOG_CRITICAL(Audio_Sink, "SDL_OpenAudioDevice failed with: %s", SDL_GetError());
49 return; 49 return;
50 } 50 }
51 51