Răsfoiți Sursa

Fix #5108: Allow surround sound for SDL2 in more scenarios (#5131)

Simon Wegendt 2 ani în urmă
părinte
comite
1cf6d7b7bb

+ 1 - 1
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;
             }
         }