diff options
| author | Nicholas Rodine <halfofastaple@gmail.com> | 2022-08-17 02:05:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-17 09:05:15 +0200 |
| commit | 2197f41506e1ed7c4c657a1899491298bd66f7f9 (patch) | |
| tree | bf4fb59575befca48f31c5f83ca6ed49c5fee17b /Ryujinx.Common/SystemInfo | |
| parent | c8f9292babd5aa6021ce1bd6a977130baebb7de3 (diff) | |
Removed extra semicolons. (#3594)
Diffstat (limited to 'Ryujinx.Common/SystemInfo')
| -rw-r--r-- | Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs b/Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs index 92b54902..5259760d 100644 --- a/Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs +++ b/Ryujinx.Common/SystemInfo/MacOSSystemInfo.cs @@ -24,7 +24,7 @@ namespace Ryujinx.Common.SystemInfo if (sysctlbyname("hw.memsize", ref totalRAM) != 0) // Bytes { totalRAM = 0; - }; + } CpuName = $"{cpuName} ; {LogicalCoreCount} logical"; RamTotal = totalRAM; |
