Browse Source
Merge pull request #1320 from lioncash/name
cubeb_sink: Correct context name in ListCubebSinkDevices()
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/audio_core/cubeb_sink.cpp
|
|
|
@ -198,7 +198,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 {}; |
|
|
|
} |
|
|
|
|