Only resize if expanding

This commit is contained in:
Jesse Boyd 2017-08-02 13:20:47 +10:00
parent 371f61c36b
commit fb3c8cc5e1
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F
1 changed files with 6 additions and 4 deletions

View File

@ -238,10 +238,12 @@ public class DiskOptimizedClipboard extends FaweClipboard implements Closeable {
area = width * length;
volume = width * length * height;
long size = width * height * length * 2l + HEADER_SIZE + (hasBiomes() ? area : 0);
close();
this.braf = new RandomAccessFile(file, "rw");
braf.setLength(size);
init();
if (braf.length() < size) {
close();
this.braf = new RandomAccessFile(file, "rw");
braf.setLength(size);
init();
}
mbb.putChar(2, (char) width);
mbb.putChar(4, (char) height);
mbb.putChar(6, (char) length);