Removed extra semicolons. (#3594)

This commit is contained in:
Nicholas Rodine 2022-08-17 02:05:15 -05:00 committed by GitHub
parent c8f9292bab
commit 2197f41506
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions

View file

@ -24,7 +24,7 @@ namespace Ryujinx.Common.SystemInfo
if (sysctlbyname("hw.memsize", ref totalRAM) != 0) // Bytes
{
totalRAM = 0;
};
}
CpuName = $"{cpuName} ; {LogicalCoreCount} logical";
RamTotal = totalRAM;