From b5be399fd4175eb6c4ba83201bd4866b357b3200 Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Sat, 22 Jul 2023 23:12:34 +0200 Subject: [PATCH] cubeb: Change name to "Dolphin Emulator" To avoid conflicts with KDE's file manager. --- Source/Core/AudioCommon/CubebUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/AudioCommon/CubebUtils.cpp b/Source/Core/AudioCommon/CubebUtils.cpp index f7682f6ade..766a5c3b83 100644 --- a/Source/Core/AudioCommon/CubebUtils.cpp +++ b/Source/Core/AudioCommon/CubebUtils.cpp @@ -72,7 +72,7 @@ std::shared_ptr CubebUtils::GetContext() } cubeb* ctx; - if (cubeb_init(&ctx, "Dolphin", nullptr) != CUBEB_OK) + if (cubeb_init(&ctx, "Dolphin Emulator", nullptr) != CUBEB_OK) { ERROR_LOG_FMT(AUDIO, "Error initializing cubeb library"); return nullptr;