diff options
author | Wunk <wunkolo@gmail.com> | 2022-11-16 14:27:42 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-16 23:27:42 +0100 |
commit | d536cc8ae6d6725780365d858f2fd64b66d90b7f (patch) | |
tree | ef0767a9bc808ba15967607b79a0e3e83924b30b /Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs | |
parent | d751da84f941e0d089040cb7aad2c1b3224ae6b7 (diff) |
Update units of memory from decimal to binary prefixes (#3716)1.1.349
`MB` and `GB` can either be interpreted as having base-10 units, or
base-2. `MiB` and `GiB` removes this discrepancy so that units of memory
are always interpreted using base-2 units.
Diffstat (limited to 'Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs')
-rw-r--r-- | Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs b/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs index acfcdcb4..52ca7153 100644 --- a/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs +++ b/Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs @@ -207,7 +207,7 @@ namespace Ryujinx.Ui.Common.Configuration public MemoryManagerMode MemoryManagerMode { get; set; } /// <summary> - /// Expands the RAM amount on the emulated system from 4GB to 6GB + /// Expands the RAM amount on the emulated system from 4GiB to 6GiB /// </summary> public bool ExpandRam { get; set; } |