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

This commit is contained in:
Simon Wegendt 2023-05-29 00:07:27 +02:00 committed by Matt Heins
parent 10f98228b3
commit 050b3d60e5

View file

@ -45,7 +45,7 @@ namespace Ryujinx.Audio.Backends.SDL2
}
else
{
_supportSurroundConfiguration = spec.channels == 6;
_supportSurroundConfiguration = spec.channels >= 6;
}
}