소스 검색

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