diff options
| author | sharmander <saldabain.dev@gmail.com> | 2021-12-26 10:54:26 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-26 12:54:26 -0300 |
| commit | 7c7bf30ad38d0d80ed9c125b7c894eba2293df66 (patch) | |
| tree | 163f5f771bcf5bfed3a79ce836e1952278fedcfb | |
| parent | 451673ada576ecd7b8e98fb03e063b5d37152c39 (diff) | |
Fix missing default value of audio volume. (#2939)
| -rw-r--r-- | Ryujinx/Configuration/ConfigurationState.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx/Configuration/ConfigurationState.cs b/Ryujinx/Configuration/ConfigurationState.cs index b0b01771..90fb3f6f 100644 --- a/Ryujinx/Configuration/ConfigurationState.cs +++ b/Ryujinx/Configuration/ConfigurationState.cs @@ -546,6 +546,7 @@ namespace Ryujinx.Configuration System.EnableFsIntegrityChecks.Value = true; System.FsGlobalAccessLogMode.Value = 0; System.AudioBackend.Value = AudioBackend.SDL2; + System.AudioVolume.Value = 1; System.MemoryManagerMode.Value = MemoryManagerMode.HostMappedUnsafe; System.ExpandRam.Value = false; System.IgnoreMissingServices.Value = false; |
