VirtualIndexBuffer: fix compile error

experimental
Kirill Vainer 10 years ago
parent 81a76fdf69
commit c72b036c9f
  1. 2
      jme3-core/src/main/java/com/jme3/scene/mesh/VirtualIndexBuffer.java

@ -81,7 +81,7 @@ public class VirtualIndexBuffer extends IndexBuffer {
case Triangles: case Triangles:
numIndices = numVerts; numIndices = numVerts;
return; return;
case Hybrid: case Reserved:
throw new UnsupportedOperationException(); throw new UnsupportedOperationException();
} }
} }

Loading…
Cancel
Save