Browse Source

Fixes #442 - Add 64bit detection for the armv7 platform

MeFisto94 9 years ago
parent
commit
870f84c6c6
1 changed files with 2 additions and 0 deletions
  1. 2 0
      jme3-core/src/main/java/com/jme3/system/JmeSystemDelegate.java

+ 2 - 0
jme3-core/src/main/java/com/jme3/system/JmeSystemDelegate.java

@@ -157,6 +157,8 @@ public abstract class JmeSystemDelegate {
             return false;
             return false;
         } else if (arch.equals("aarch64")) {
         } else if (arch.equals("aarch64")) {
             return true;
             return true;
+        } else if (arch.equals("armv7") || arch.equals("armv7l")) {
+            return false;
         } else if (arch.equals("arm")) {
         } else if (arch.equals("arm")) {
             return false;
             return false;
         } else {
         } else {