diff options
Diffstat (limited to 'src/main/java/cc/polyfrost/oneconfig/lwjgl/image')
| -rw-r--r-- | src/main/java/cc/polyfrost/oneconfig/lwjgl/image/ImageLoader.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/cc/polyfrost/oneconfig/lwjgl/image/ImageLoader.java b/src/main/java/cc/polyfrost/oneconfig/lwjgl/image/ImageLoader.java index 8e72828..479104c 100644 --- a/src/main/java/cc/polyfrost/oneconfig/lwjgl/image/ImageLoader.java +++ b/src/main/java/cc/polyfrost/oneconfig/lwjgl/image/ImageLoader.java @@ -1,6 +1,6 @@ package cc.polyfrost.oneconfig.lwjgl.image; -import cc.polyfrost.oneconfig.lwjgl.IOUtil; +import cc.polyfrost.oneconfig.utils.IOUtils; import org.lwjgl.nanovg.NanoVG; import org.lwjgl.stb.STBImage; @@ -17,7 +17,7 @@ public class ImageLoader { int[] height = {0}; int[] channels = {0}; - ByteBuffer image = IOUtil.resourceToByteBufferNullable(fileName); + ByteBuffer image = IOUtils.resourceToByteBufferNullable(fileName); if (image == null) { return false; } |
