Skip to content

Commit be51a72

Browse files
committed
Merge branch 'patch-1'
2 parents e18eb0b + 4c73df7 commit be51a72

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Packages/UnityWebBrowser/Runtime/Helper/WebBrowserUtils.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,8 @@ public static Platform GetRunningPlatform()
146146
return Platform.Linux64;
147147
#elif UNITY_STANDALONE_OSX
148148
return System.Runtime.InteropServices.RuntimeInformation.ProcessArchitecture == System.Runtime.InteropServices.Architecture.Arm64 ? Platform.MacOSArm64 : Platform.MacOS;
149+
#else
150+
throw new PlatformNotSupportedException();
149151
#endif
150152
}
151153

@@ -185,4 +187,4 @@ internal static void SetAllTextureColorToOne(Texture2D texture, Color32 color)
185187
texture.Apply();
186188
}
187189
}
188-
}
190+
}

0 commit comments

Comments
 (0)