Skip to content

Commit f268d00

Browse files
committed
Fixes issue jMonkeyEngine#1286
1 parent 5584c93 commit f268d00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jme3-core/src/main/java/com/jme3/system/JmeSystemDelegate.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009-2019 jMonkeyEngine
2+
* Copyright (c) 2009-2020 jMonkeyEngine
33
* All rights reserved.
44
*
55
* Redistribution and use in source and binary forms, with or without
@@ -171,7 +171,7 @@ public Platform getPlatform() {
171171
return is64 ? Platform.Windows64 : Platform.Windows32;
172172
} else if (os.contains("linux") || os.contains("freebsd")
173173
|| os.contains("sunos") || os.contains("unix")) {
174-
if (arch.startsWith("arm")) {
174+
if (arch.startsWith("arm") || arch.startsWith("aarch")) {
175175
return is64 ? Platform.Linux_ARM64 : Platform.Linux_ARM32;
176176
} else {
177177
return is64 ? Platform.Linux64 : Platform.Linux32;

0 commit comments

Comments
 (0)