WIP: Android

This commit is contained in:
Daniil Vinogradov 2025-03-04 02:09:27 +01:00
parent 5009474e14
commit 275c07d473
142 changed files with 9964 additions and 108 deletions

View file

@ -1012,6 +1012,7 @@ namespace ARMeilleure.Translation.PTC
osPlatform |= (OperatingSystem.IsMacOS() ? 1u : 0u) << 2;
osPlatform |= (OperatingSystem.IsWindows() ? 1u : 0u) << 3;
osPlatform |= (OperatingSystem.IsIOS() ? 1u : 0u) << 4;
osPlatform |= (Ryujinx.Common.PlatformInfo.IsBionic ? 1u : 0u) << 5;
#pragma warning restore IDE0055
return osPlatform;