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 GitHub
parent 7bc9d0cdad
commit 1cf6d7b7bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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