瀏覽代碼

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

Simon Wegendt 3 年之前
父節點
當前提交
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;
             }
         }