* Do not crash if running on x86 / MIPS android system when using JmeSystem.getPlatform()

This commit is contained in:
shadowislord 2015-01-31 12:47:07 -05:00
parent 4bfd992751
commit 86dbade689

View File

@ -95,7 +95,12 @@ public enum Platform {
iOS_X86,
iOS_ARM;
iOS_ARM,
/**
* Android running on unknown platform (could be x86 or mips for example).
*/
Android_Other;
private final boolean is64bit;