From afe90249cfe4614c53a4de4b3c55174f02c26e09 Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Sat, 24 Jul 2004 20:05:51 +0000 Subject: [PATCH] Fixed typo --- src/java/org/lwjgl/opengl/Pbuffer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/org/lwjgl/opengl/Pbuffer.java b/src/java/org/lwjgl/opengl/Pbuffer.java index eba7fc87..7a7086fc 100644 --- a/src/java/org/lwjgl/opengl/Pbuffer.java +++ b/src/java/org/lwjgl/opengl/Pbuffer.java @@ -254,7 +254,7 @@ public final class Pbuffer { */ public synchronized void makeCurrent() throws LWJGLException { if (display_context != null && display_context != Display.getContext()) - throw new IllegalStateException("Cannot make a Pbuffer invalid after the Display has been destroyed"); + throw new IllegalStateException("Cannot make a Pbuffer current after the Display has been destroyed"); nMakeCurrent(handle); if (display_context == null) GLContext.useContext(this);