mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-20 06:46:18 +00:00
spelling: mantissa
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
committed by
Jindra Petřík
parent
81c73c7fe5
commit
235e44fc30
@@ -410,9 +410,9 @@ public class SWFOutputStream extends OutputStream {
|
||||
int bits = Float.floatToRawIntBits(value);
|
||||
int sign = bits >> 31;
|
||||
int exponent = (bits >> 22) & 0xff;
|
||||
int mantisa = bits & 0x3FFFFF;
|
||||
mantisa >>= 13;
|
||||
writeUI16((sign << 15) + (exponent << 10) + mantisa);
|
||||
int mantissa = bits & 0x3FFFFF;
|
||||
mantissa >>= 13;
|
||||
writeUI16((sign << 15) + (exponent << 10) + mantissa);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user