diff options
author | Simon Wegendt <plneappl@users.noreply.github.com> | 2023-05-29 00:07:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-29 00:07:27 +0200 |
commit | 1cf6d7b7bbcb4f10025e8230339873a15dea2752 (patch) | |
tree | de3f442df5058e93c7f3aea970ece2c99b21607f | |
parent | 7bc9d0cdad5ce1b79d0f6a90b3ee6322db6aff39 (diff) |
Fix #5108: Allow surround sound for SDL2 in more scenarios (#5131)1.1.837
-rw-r--r-- | src/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceDriver.cs | 2 |
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; } } |