aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortaw27 <taw27@84d2e878-0bd5-11dd-ad15-13eda11d74c5>2008-05-14 12:26:01 +0000
committertaw27 <taw27@84d2e878-0bd5-11dd-ad15-13eda11d74c5>2008-05-14 12:26:01 +0000
commit6fb44a0673239f0a4168caad6bf706f1706ed013 (patch)
treefe8008205d847fe03dcff170f6c14c1f123ea6ab /src
parent2b3e32981c358ff308f3a5e05f3865a299d9dd28 (diff)
Remove unused variables
git-svn-id: svn://cook.msm.cam.ac.uk:745/thrust3d/thrust3d@11 84d2e878-0bd5-11dd-ad15-13eda11d74c5
Diffstat (limited to 'src')
-rw-r--r--src/model.c3
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++ ) {