From 9cc7c13d15bed74f0364a47517416c245c2aaa2e Mon Sep 17 00:00:00 2001 From: sunshineinabox Date: Tue, 1 Aug 2023 11:08:31 -0700 Subject: [PATCH] Formatting issues --- src/Ryujinx.Common/SystemInfo/WindowsSystemInfo.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Ryujinx.Common/SystemInfo/WindowsSystemInfo.cs b/src/Ryujinx.Common/SystemInfo/WindowsSystemInfo.cs index f14792551..403afd4a0 100644 --- a/src/Ryujinx.Common/SystemInfo/WindowsSystemInfo.cs +++ b/src/Ryujinx.Common/SystemInfo/WindowsSystemInfo.cs @@ -11,13 +11,13 @@ namespace Ryujinx.Common.SystemInfo { internal WindowsSystemInfo() { - CpuName = $"{GetCpuidCpuName() ?? GetCpuNameWMI()} ; {GetPhysicalCoreCount()} physical ; {LogicalCoreCount} logical"; + CpuName = $"{GetCpuidCpuName() ?? GetCpuNameWmi()} ; {GetPhysicalCoreCount()} physical ; {LogicalCoreCount} logical"; (RamTotal, RamAvailable) = GetMemoryStats(); } - private static string GetCpuNameWMI() + private static string GetCpuNameWmi() { - ManagementObjectCollection cpuObjs = GetWMIObjects("root\\CIMV2", "SELECT Name FROM Win32_Processor"); + ManagementObjectCollection cpuObjs = GetWmiObjects("root\\CIMV2", "SELECT Name FROM Win32_Processor"); if (cpuObjs != null) { @@ -121,7 +121,7 @@ namespace Ryujinx.Common.SystemInfo RelationProcessorCore, } - private static ManagementObjectCollection GetWMIObjects(string scope, string query) + private static ManagementObjectCollection GetWmiObjects(string scope, string query) { try {