From 4a44d2668cf02e01359120cee3259f79af3905cf Mon Sep 17 00:00:00 2001 From: Ziemas Date: Sat, 15 Feb 2025 22:12:26 +0100 Subject: [PATCH] SDL Audio: Set app name hint --- pcsx2/Host/SDLAudioStream.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pcsx2/Host/SDLAudioStream.cpp b/pcsx2/Host/SDLAudioStream.cpp index 5bd2b67fff..4af1b7453f 100644 --- a/pcsx2/Host/SDLAudioStream.cpp +++ b/pcsx2/Host/SDLAudioStream.cpp @@ -37,6 +37,9 @@ static bool InitializeSDLAudio(Error* error) if (initialized) return true; + // Set the name that shows up in the audio mixers on some platforms + SDL_SetHint("SDL_AUDIO_DEVICE_APP_NAME", "PCSX2"); + // May as well keep it alive until the process exits. if (SDL_InitSubSystem(SDL_INIT_AUDIO) != 0) {