diff --git a/src/java/org/lwjgl/BufferChecks.java b/src/java/org/lwjgl/BufferChecks.java index ca4eef5a..db42a4c7 100644 --- a/src/java/org/lwjgl/BufferChecks.java +++ b/src/java/org/lwjgl/BufferChecks.java @@ -63,7 +63,7 @@ public class BufferChecks { */ public static void checkFunctionAddress(long pointer) { if (pointer == 0) { - throw new IllegalStateException("Function is unsupported"); + throw new IllegalStateException("Function is not supported"); } }