aboutsummaryrefslogtreecommitdiffstats
path: root/demos/RonsDemos/particle.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2001-02-13 05:32:07 +0000
committerSven Gothel <[email protected]>2001-02-13 05:32:07 +0000
commit3e2b16a820bfe03f8f3837c3aaa615c8c4b7f18c (patch)
treed834a05eb37751b4c95045c3021589f2e22fcd9f /demos/RonsDemos/particle.java
parent91bc9d109b2d16e6d42f1fbcc9d3dbca51c40b69 (diff)
JAWT Support JDK >=1.3
Diffstat (limited to 'demos/RonsDemos/particle.java')
-rw-r--r--demos/RonsDemos/particle.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/RonsDemos/particle.java b/demos/RonsDemos/particle.java
index 2369b00..7f1d552 100644
--- a/demos/RonsDemos/particle.java
+++ b/demos/RonsDemos/particle.java
@@ -253,7 +253,7 @@ public class particle extends SimpleGLAnimApplet1
sphere_list = gl.glGenLists(1);
gl.glNewList(sphere_list,GL_COMPILE);
gl.glColor3ub((byte)0, (byte)255, (byte)128);
- int qobj = glu.gluNewQuadric();
+ long qobj = glu.gluNewQuadric();
glu.gluQuadricOrientation(qobj,GLU_OUTSIDE);
glu.gluQuadricNormals(qobj,GLU_SMOOTH);
glu.gluQuadricTexture(qobj,false);