diff options
author | Lioncash <mathew1800@gmail.com> | 2018-09-14 18:18:06 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-09-14 18:18:09 +0200 |
commit | b5218d998636b8b4c3d075f86f1603bde0204c11 (patch) | |
tree | 753ce7ca683d8aa5ad5bcf9059a8bbffe85a39c6 /src | |
parent | Merge pull request #1308 from valentinvanelslande/ipc (diff) | |
download | yuzu-b5218d998636b8b4c3d075f86f1603bde0204c11.tar yuzu-b5218d998636b8b4c3d075f86f1603bde0204c11.tar.gz yuzu-b5218d998636b8b4c3d075f86f1603bde0204c11.tar.bz2 yuzu-b5218d998636b8b4c3d075f86f1603bde0204c11.tar.lz yuzu-b5218d998636b8b4c3d075f86f1603bde0204c11.tar.xz yuzu-b5218d998636b8b4c3d075f86f1603bde0204c11.tar.zst yuzu-b5218d998636b8b4c3d075f86f1603bde0204c11.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/audio_core/cubeb_sink.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/cubeb_sink.cpp b/src/audio_core/cubeb_sink.cpp index 79155a7a0..0e2e71ab3 100644 --- a/src/audio_core/cubeb_sink.cpp +++ b/src/audio_core/cubeb_sink.cpp @@ -197,7 +197,7 @@ std::vector<std::string> ListCubebSinkDevices() { std::vector<std::string> device_list; cubeb* ctx; - if (cubeb_init(&ctx, "Citra Device Enumerator", nullptr) != CUBEB_OK) { + if (cubeb_init(&ctx, "yuzu Device Enumerator", nullptr) != CUBEB_OK) { LOG_CRITICAL(Audio_Sink, "cubeb_init failed"); return {}; } |