From 0798a369ec0e0b8a6b65842dbcc18d7bb1d89503 Mon Sep 17 00:00:00 2001 From: Konrad Dysput Date: Tue, 23 Apr 2024 18:13:28 +0200 Subject: [PATCH] Rename uname.sysname attribute for iOS --- Runtime/Common/SystemHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/Common/SystemHelper.cs b/Runtime/Common/SystemHelper.cs index 900907bf..6558fa5e 100644 --- a/Runtime/Common/SystemHelper.cs +++ b/Runtime/Common/SystemHelper.cs @@ -72,7 +72,7 @@ internal static string Name() case RuntimePlatform.Android: return "Android"; case RuntimePlatform.IPhonePlayer: - return "IOS"; + return "iOS"; case RuntimePlatform.LinuxEditor: case RuntimePlatform.LinuxPlayer: return "Linux";