aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Ui.Common
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Ui.Common')
-rw-r--r--Ryujinx.Ui.Common/App/ApplicationLibrary.cs2
-rw-r--r--Ryujinx.Ui.Common/Configuration/ConfigurationFileFormat.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Ui.Common/App/ApplicationLibrary.cs b/Ryujinx.Ui.Common/App/ApplicationLibrary.cs
index 7f1f692c..9a6c1997 100644
--- a/Ryujinx.Ui.Common/App/ApplicationLibrary.cs
+++ b/Ryujinx.Ui.Common/App/ApplicationLibrary.cs
@@ -464,7 +464,7 @@ namespace Ryujinx.Ui.App.Common
TimePlayed = ConvertSecondsToReadableString(appMetadata.TimePlayed),
LastPlayed = appMetadata.LastPlayed,
FileExtension = Path.GetExtension(applicationPath).ToUpper().Remove(0, 1),
- FileSize = (fileSize < 1) ? (fileSize * 1024).ToString("0.##") + "MB" : fileSize.ToString("0.##") + "GB",
+ FileSize = (fileSize < 1) ? (fileSize * 1024).ToString("0.##") + "MiB" : fileSize.ToString("0.##") + "GiB",
Path = applicationPath,
ControlHolder = controlHolder
};
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; }