diff --git a/common/src/backend/java/dev/engine_room/flywheel/backend/engine/indirect/DepthPyramid.java b/common/src/backend/java/dev/engine_room/flywheel/backend/engine/indirect/DepthPyramid.java index d59a153ad..d09f4b098 100644 --- a/common/src/backend/java/dev/engine_room/flywheel/backend/engine/indirect/DepthPyramid.java +++ b/common/src/backend/java/dev/engine_room/flywheel/backend/engine/indirect/DepthPyramid.java @@ -116,7 +116,7 @@ public class DepthPyramid { public static int getImageMipLevels(int width, int height) { int result = 1; - while (width > 2 && height > 2) { + while (width > 1 && height > 1) { result++; width >>= 1; height >>= 1;