mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 18:00:44 +00:00
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