diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/model.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/model.c b/src/model.c index afbb5bb..b0275fe 100644 --- a/src/model.c +++ b/src/model.c @@ -176,7 +176,6 @@ static int model_load_obj(ModelContext *ctx, const char *name, RenderContext *re char line[1024]; GLfloat x, y, z; - unsigned int v1, v2, v3; GLfloat texx, texy; size_t s; @@ -233,7 +232,7 @@ static int model_load_obj(ModelContext *ctx, const char *name, RenderContext *re for ( i=1; i<n; i++ ) { char **sp; - int np, ip, vnum, nnum, j, nslash; + int np, vnum, nnum, j, nslash; nslash = 0; for ( j=0; j<strlen(bits[i]); j++ ) { |