aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Headless.SDL2
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2024-09-17 15:09:20 -0300
committerGitHub <noreply@github.com>2024-09-17 15:09:20 -0300
commitcf77c011e4f90efd93509c3852350c48f2597344 (patch)
treec9d1719327119ba9f4e0be7336bc6666063826d2 /src/Ryujinx.Headless.SDL2
parentcd74ae1bbd491987d983bfff36545451e2e6764c (diff)
Change 6GB DRAM expansion to 8GB (#7313)
* Change 6GB DRAM expansion to 8GB * Update texts and tooltips
Diffstat (limited to 'src/Ryujinx.Headless.SDL2')
-rw-r--r--src/Ryujinx.Headless.SDL2/Options.cs2
-rw-r--r--src/Ryujinx.Headless.SDL2/Program.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Ryujinx.Headless.SDL2/Options.cs b/src/Ryujinx.Headless.SDL2/Options.cs
index ea206375..ef8849ee 100644
--- a/src/Ryujinx.Headless.SDL2/Options.cs
+++ b/src/Ryujinx.Headless.SDL2/Options.cs
@@ -219,7 +219,7 @@ namespace Ryujinx.Headless.SDL2
// Hacks
- [Option("expand-ram", Required = false, Default = false, HelpText = "Expands the RAM amount on the emulated system from 4GiB to 6GiB.")]
+ [Option("expand-ram", Required = false, Default = false, HelpText = "Expands the RAM amount on the emulated system from 4GiB to 8GiB.")]
public bool ExpandRAM { get; set; }
[Option("ignore-missing-services", Required = false, Default = false, HelpText = "Enable ignoring missing services.")]
diff --git a/src/Ryujinx.Headless.SDL2/Program.cs b/src/Ryujinx.Headless.SDL2/Program.cs
index 07995dbd..4ee27120 100644
--- a/src/Ryujinx.Headless.SDL2/Program.cs
+++ b/src/Ryujinx.Headless.SDL2/Program.cs
@@ -562,7 +562,7 @@ namespace Ryujinx.Headless.SDL2
_userChannelPersistence,
renderer,
new SDL2HardwareDeviceDriver(),
- options.ExpandRAM ? MemoryConfiguration.MemoryConfiguration6GiB : MemoryConfiguration.MemoryConfiguration4GiB,
+ options.ExpandRAM ? MemoryConfiguration.MemoryConfiguration8GiB : MemoryConfiguration.MemoryConfiguration4GiB,
window,
options.SystemLanguage,
options.SystemRegion,