Remove check for x86

Now that the aarch64 library is added, this
check is unnecessary.
This commit is contained in:
Sung Ho Yoon
2023-08-04 22:10:48 +09:00
committed by GitHub
parent e0a5450264
commit 502b18fa86

View File

@@ -88,10 +88,6 @@ class FlatWindowsNativeWindowBorder
if( !SystemInfo.isWindows_10_orLater )
return null;
// requires x86 architecture
if( !SystemInfo.isX86 && !SystemInfo.isX86_64 )
return null;
// check whether native library was successfully loaded
if( !FlatNativeLibrary.isLoaded() )
return null;