diff options
author | Mary <me@thog.eu> | 2021-03-13 11:20:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-13 21:20:02 +1100 |
commit | 39f171ece5df6ba07f1d4a5aaf6f3026ce15833e (patch) | |
tree | 2749c659926b2a68bfc6bc9878c211929ce6f1f2 /Ryujinx | |
parent | 548add9abd6e994400a91a8461fbb1f0a5463f84 (diff) |
Override openal-soft configuration (#2101)
This enforce speaker mode to avoid weird audio quality reduction with
output considered as headphones by Windows (It applies a HRTF or crossfeed filter supposed to improve audio quality, might be a bug on their end)
Diffstat (limited to 'Ryujinx')
-rw-r--r-- | Ryujinx/Ryujinx.csproj | 3 | ||||
-rw-r--r-- | Ryujinx/alsoft.ini | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/Ryujinx/Ryujinx.csproj b/Ryujinx/Ryujinx.csproj index 7df77667..5dd250f4 100644 --- a/Ryujinx/Ryujinx.csproj +++ b/Ryujinx/Ryujinx.csproj @@ -34,6 +34,9 @@ </ItemGroup> <ItemGroup> + <None Update="alsoft.ini"> + <CopyToOutputDirectory>Always</CopyToOutputDirectory> + </None> <None Update="Config.json" Condition="'$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Profile Debug'"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> diff --git a/Ryujinx/alsoft.ini b/Ryujinx/alsoft.ini new file mode 100644 index 00000000..a142619a --- /dev/null +++ b/Ryujinx/alsoft.ini @@ -0,0 +1,2 @@ +[General] +stereo-mode=speakers |