From 4d62ee99e631291093df15e2becb2fae93cc3c31 Mon Sep 17 00:00:00 2001 From: mcrcortex <18544518+MCRcortex@users.noreply.github.com> Date: Wed, 15 Nov 2023 22:05:19 +1000 Subject: [PATCH] Funni missing ; --- src/main/java/me/cortex/voxelmon/core/gl/GlTexture.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/me/cortex/voxelmon/core/gl/GlTexture.java b/src/main/java/me/cortex/voxelmon/core/gl/GlTexture.java index 1bf8049d..5d5b4c6b 100644 --- a/src/main/java/me/cortex/voxelmon/core/gl/GlTexture.java +++ b/src/main/java/me/cortex/voxelmon/core/gl/GlTexture.java @@ -13,7 +13,7 @@ public class GlTexture extends TrackedObject { final int id; private final int type; public GlTexture() { - this(GL_TEXTURE_2D) + this(GL_TEXTURE_2D); } public GlTexture(int type) {