TINYGL: Remove default case as the current cases already represent all possible values

This commit is contained in:
Joel Teichroeb 2013-12-08 11:27:54 -08:00
parent edce904439
commit 96f2dd1748

View File

@ -283,7 +283,6 @@ void glopVertex(GLContext *c, GLParam *p) {
case 0:
gl_draw_triangle(c, &c->vertex[2], &c->vertex[1], &c->vertex[0]);
break;
default:
case 1:
gl_draw_triangle(c,&c->vertex[0], &c->vertex[1], &c->vertex[2]);
break;