Renamed variables named enum because of jdk1.5

This commit is contained in:
Elias Naur 2003-12-24 11:01:45 +00:00
parent bebb9bad4b
commit 46a072cec8
1 changed files with 2 additions and 2 deletions

View File

@ -57,8 +57,8 @@ abstract class Util {
return buffer.position();
}
static int getGLInteger(int enum) {
CoreGL11.glGetInteger(enum, int_buffer);
static int getGLInteger(int gl_enum) {
CoreGL11.glGetInteger(gl_enum, int_buffer);
return int_buffer.get(0);
}
}