mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 11:40:00 +00:00
cubeb_sink: Correct context name in ListCubebSinkDevices()
This ain't Citra.
This commit is contained in:
parent
8e7497d5bb
commit
b5218d9986
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@ std::vector<std::string> ListCubebSinkDevices() {
|
||||||
std::vector<std::string> device_list;
|
std::vector<std::string> device_list;
|
||||||
cubeb* ctx;
|
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");
|
LOG_CRITICAL(Audio_Sink, "cubeb_init failed");
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue