We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5584c93 commit f268d00Copy full SHA for f268d00
jme3-core/src/main/java/com/jme3/system/JmeSystemDelegate.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 2009-2019 jMonkeyEngine
+ * Copyright (c) 2009-2020 jMonkeyEngine
3
* All rights reserved.
4
*
5
* Redistribution and use in source and binary forms, with or without
@@ -171,7 +171,7 @@ public Platform getPlatform() {
171
return is64 ? Platform.Windows64 : Platform.Windows32;
172
} else if (os.contains("linux") || os.contains("freebsd")
173
|| os.contains("sunos") || os.contains("unix")) {
174
- if (arch.startsWith("arm")) {
+ if (arch.startsWith("arm") || arch.startsWith("aarch")) {
175
return is64 ? Platform.Linux_ARM64 : Platform.Linux_ARM32;
176
} else {
177
return is64 ? Platform.Linux64 : Platform.Linux32;
0 commit comments