diff --git a/jme3-core/src/main/java/com/jme3/math/FastMath.java b/jme3-core/src/main/java/com/jme3/math/FastMath.java index 5ca65bb7f..c1c3fa8a9 100644 --- a/jme3-core/src/main/java/com/jme3/math/FastMath.java +++ b/jme3-core/src/main/java/com/jme3/math/FastMath.java @@ -981,9 +981,9 @@ final public class FastMath { return 0x7bff; } else if (flt < -65504f) { return (short) (0x7bff | 0x8000); - } else if (flt > 0f && flt < 5.96046E-8f) { + } else if (flt > 0f && flt < 3.054738E-5f) { return 0x0001; - } else if (flt < 0f && flt > -5.96046E-8f) { + } else if (flt < 0f && flt > -3.054738E-5f) { return (short) 0x8001; }