1
0
forked from MeloNX/MeloNX

Fix missing default value of audio volume. (#2939)

This commit is contained in:
sharmander 2021-12-26 10:54:26 -05:00 committed by GitHub
parent 90a1d67d1e
commit 10005511ac

View File

@ -546,6 +546,7 @@ namespace Ryujinx.Configuration
System.EnableFsIntegrityChecks.Value = true; System.EnableFsIntegrityChecks.Value = true;
System.FsGlobalAccessLogMode.Value = 0; System.FsGlobalAccessLogMode.Value = 0;
System.AudioBackend.Value = AudioBackend.SDL2; System.AudioBackend.Value = AudioBackend.SDL2;
System.AudioVolume.Value = 1;
System.MemoryManagerMode.Value = MemoryManagerMode.HostMappedUnsafe; System.MemoryManagerMode.Value = MemoryManagerMode.HostMappedUnsafe;
System.ExpandRam.Value = false; System.ExpandRam.Value = false;
System.IgnoreMissingServices.Value = false; System.IgnoreMissingServices.Value = false;