Преглед изворни кода

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

Simon Wegendt пре 2 година
родитељ
комит
1cf6d7b7bb
1 измењених фајлова са 1 додато и 1 уклоњено
  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;
             }
         }