Explorar el Código

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

Simon Wegendt hace 3 años
padre
commit
1cf6d7b7bb
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/Ryujinx.Audio.Backends.SDL2/SDL2HardwareDeviceDriver.cs

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