fixed indentation derp in FNAW model loader

This commit is contained in:
LAX1DUDE 2022-06-11 16:16:47 -07:00
parent 866e5c2e47
commit 78f8dd8508

View File

@ -80,10 +80,10 @@ public class HighPolyMesh {
for(int i = 0; i < intsTotal; ++i) {
int ch1 = mdlIn.read();
int ch2 = mdlIn.read();
int ch3 = mdlIn.read();
int ch4 = mdlIn.read();
if ((ch1 | ch2 | ch3 | ch4) < 0) throw new EOFException(); // rip
int ch2 = mdlIn.read();
int ch3 = mdlIn.read();
int ch4 = mdlIn.read();
if ((ch1 | ch2 | ch3 | ch4) < 0) throw new EOFException(); // rip
up1.put((ch4 << 24) + (ch3 << 16) + (ch2 << 8) + (ch1 << 0));
}