misc: Code cleanups & remove references to Patreon & Twitter.

This commit is contained in:
Evan Husted
2024-10-11 17:56:59 -05:00
parent 26e9aa11d5
commit 4c237c4793
27 changed files with 91 additions and 307 deletions

View File

@ -33,17 +33,13 @@ namespace Ryujinx.UI.Common.SystemInfo
public static SystemInfo Gather()
{
if (OperatingSystem.IsWindows())
{
return new WindowsSystemInfo();
}
else if (OperatingSystem.IsLinux())
{
if (OperatingSystem.IsLinux())
return new LinuxSystemInfo();
}
else if (OperatingSystem.IsMacOS())
{
if (OperatingSystem.IsMacOS())
return new MacOSSystemInfo();
}
Logger.Error?.Print(LogClass.Application, "SystemInfo unsupported on this platform");