From c63ad758e47de7689ffd9aa7e1cd32739212eaab Mon Sep 17 00:00:00 2001 From: madwind Date: Fri, 31 Jan 2025 23:12:53 +0800 Subject: [PATCH] Revert "misc: chore: Prefix OS, CPU, and RAM lines with the same method name as other system info prints." This reverts commit 9075a3960bf17d7f3ee029c14fd185a0edffefe6. --- src/Ryujinx/Utilities/SystemInfo/SystemInfo.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Ryujinx/Utilities/SystemInfo/SystemInfo.cs b/src/Ryujinx/Utilities/SystemInfo/SystemInfo.cs index aa7094ec7..0d45c52f2 100644 --- a/src/Ryujinx/Utilities/SystemInfo/SystemInfo.cs +++ b/src/Ryujinx/Utilities/SystemInfo/SystemInfo.cs @@ -24,9 +24,9 @@ namespace Ryujinx.Ava.Utilities.SystemInfo public void Print() { - Logger.Notice.Print(LogClass.Application, $"Operating System: {OsDescription}", "PrintSystemInfo"); - Logger.Notice.Print(LogClass.Application, $"CPU: {CpuName}", "PrintSystemInfo"); - Logger.Notice.Print(LogClass.Application, $"RAM: Total {ToGBString(RamTotal)} ; Available {ToGBString(RamAvailable)}", "PrintSystemInfo"); + Logger.Notice.Print(LogClass.Application, $"Operating System: {OsDescription}"); + Logger.Notice.Print(LogClass.Application, $"CPU: {CpuName}"); + Logger.Notice.Print(LogClass.Application, $"RAM: Total {ToGBString(RamTotal)} ; Available {ToGBString(RamAvailable)}"); } public static SystemInfo Gather()