From 0c1917d56efbc718916bb209848eeaafc384126d Mon Sep 17 00:00:00 2001 From: mcrcortex <18544518+MCRcortex@users.noreply.github.com> Date: Sat, 7 Jun 2025 12:02:30 +1000 Subject: [PATCH] hopefully fix issues --- .../rendering/section/geometry/BasicAsyncGeometryManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/me/cortex/voxy/client/core/rendering/section/geometry/BasicAsyncGeometryManager.java b/src/main/java/me/cortex/voxy/client/core/rendering/section/geometry/BasicAsyncGeometryManager.java index 627ef8af..2e705641 100644 --- a/src/main/java/me/cortex/voxy/client/core/rendering/section/geometry/BasicAsyncGeometryManager.java +++ b/src/main/java/me/cortex/voxy/client/core/rendering/section/geometry/BasicAsyncGeometryManager.java @@ -16,7 +16,7 @@ import static me.cortex.voxy.client.core.rendering.section.geometry.BasicSection //Is basicly the manager for an "undefined" data store, the underlying store is irrelevant // this manager serves as an overlay, that is, it allows an implementation to do "async management" of the data store public class BasicAsyncGeometryManager implements IGeometryManager { - private static final int GEOMETRY_ELEMENT_SIZE = 8; + private static final long GEOMETRY_ELEMENT_SIZE = 8; private final HierarchicalBitSet allocationSet; private final AllocationArena allocationHeap = new AllocationArena(); private final ObjectArrayList sectionMetadata = new ObjectArrayList<>(1<<15);