Audio: Fix extension name in ALC_EXT_disconnect extension check.

This commit is contained in:
Miku AuahDark
2025-06-10 20:26:34 +08:00
parent 24dfbad024
commit f19ebafa50
+1 -1
View File
@@ -106,7 +106,7 @@ void Pool::update()
thread::Lock lock(mutex);
static bool disconnectExtSupported = alcIsExtensionPresent(device, "ALC_EXT_Disconnect") == ALC_TRUE;
static bool disconnectExtSupported = alcIsExtensionPresent(device, "ALC_EXT_disconnect") == ALC_TRUE;
// Device disconnection event
if (disconnectExtSupported)