diff options
Diffstat (limited to 'Ryujinx.Common/SystemInfo/MacOSSysteminfo.cs')
-rw-r--r-- | Ryujinx.Common/SystemInfo/MacOSSysteminfo.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Common/SystemInfo/MacOSSysteminfo.cs b/Ryujinx.Common/SystemInfo/MacOSSysteminfo.cs index 167c96db..5ba45a68 100644 --- a/Ryujinx.Common/SystemInfo/MacOSSysteminfo.cs +++ b/Ryujinx.Common/SystemInfo/MacOSSysteminfo.cs @@ -75,7 +75,7 @@ namespace Ryujinx.Common.SystemInfo } else { - Logger.PrintError(LogClass.Application, $"Cannot get memory size, sysctlbyname error: {res}"); + Logger.Error?.Print(LogClass.Application, $"Cannot get memory size, sysctlbyname error: {res}"); RamSize = 0; } @@ -88,7 +88,7 @@ namespace Ryujinx.Common.SystemInfo } else { - Logger.PrintError(LogClass.Application, $"Cannot get CPU name, sysctlbyname error: {res}"); + Logger.Error?.Print(LogClass.Application, $"Cannot get CPU name, sysctlbyname error: {res}"); CpuName = "Unknown"; } |