aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceDriver.cs
diff options
context:
space:
mode:
authorSimon Wegendt <plneappl@users.noreply.github.com>2023-05-29 00:07:27 +0200
committerGitHub <noreply@github.com>2023-05-29 00:07:27 +0200
commit1cf6d7b7bbcb4f10025e8230339873a15dea2752 (patch)
treede3f442df5058e93c7f3aea970ece2c99b21607f /src/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceDriver.cs
parent7bc9d0cdad5ce1b79d0f6a90b3ee6322db6aff39 (diff)
Fix #5108: Allow surround sound for SDL2 in more scenarios (#5131)1.1.837
Diffstat (limited to 'src/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceDriver.cs')
-rw-r--r--src/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceDriver.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceDriver.cs b/src/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceDriver.cs
index d3a73cfc..7bfff5f9 100644
--- a/src/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceDriver.cs
+++ b/src/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceDriver.cs
@@ -45,7 +45,7 @@ namespace Ryujinx.Audio.Backends.SDL2
}
else
{
- _supportSurroundConfiguration = spec.channels == 6;
+ _supportSurroundConfiguration = spec.channels >= 6;
}
}