Okay . . . just wrote a quick little Base OpenGL class to derive all my other classes from. I go to compile and the only error is . . .
[javac] C:\NateDev\Artillery\src\com\rn\GLUser.java:12: cannot access org.lwjgl.DisplayMode
[javac] bad class file: C:\NateDev\Artillery\lib\lwjgl.jar(org/lwjgl/DisplayMode.class)
[javac] class file has wrong version 48.0, should be 47.0
[javac] Please remove or make sure it appears in the correct subdirectory of the classpath.
[javac] protected static DisplayMode mode;
[javac] ^
[javac] 1 error
The only time I’ve ever gotten this error before was when I the package name in one of my class files didn’t match the directory I’d put it in. Took forever to figure it out. This . . . well, it’s in the .jar, so that’s not the problem and the .jar is definitely in the classpath, etc.
I managed to compile a class similar to this yesterday, so I’m positive this is just a ID-10-T error, but I’m wondering if anybody out there’s willing to smack me upside the head and tell me what’s wrong.
-Nate