diff options
Diffstat (limited to 'Ryujinx/Program.cs')
-rw-r--r-- | Ryujinx/Program.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Ryujinx/Program.cs b/Ryujinx/Program.cs index 2a906b82..45876da8 100644 --- a/Ryujinx/Program.cs +++ b/Ryujinx/Program.cs @@ -1,6 +1,6 @@ using Gtk; -using Ryujinx.Common; using Ryujinx.Common.Logging; +using Ryujinx.Common.SystemInfo; using Ryujinx.Configuration; using Ryujinx.Debugger.Profiler; using Ryujinx.Ui; @@ -45,9 +45,9 @@ namespace Ryujinx Logger.PrintInfo(LogClass.Application, $"Ryujinx Version: {Version}"); - Logger.PrintInfo(LogClass.Application, $"Operating System: {SystemInfo.OsDescription}"); - Logger.PrintInfo(LogClass.Application, $"CPU: {SystemInfo.CpuName}"); - Logger.PrintInfo(LogClass.Application, $"Total RAM: {SystemInfo.RamSize}"); + Logger.PrintInfo(LogClass.Application, $"Operating System: {SystemInfo.Instance.OsDescription}"); + Logger.PrintInfo(LogClass.Application, $"CPU: {SystemInfo.Instance.CpuName}"); + Logger.PrintInfo(LogClass.Application, $"Total RAM: {SystemInfo.Instance.RamSizeInMB}"); string localConfigurationPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Config.json"); string globalBasePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Ryujinx"); |