From: Ash Tyndall Date: Fri, 21 Oct 2011 07:20:45 +0000 (+0800) Subject: (no commit message) X-Git-Url: https://git.ucc.asn.au/?p=atyndall%2Fcits2231.git;a=commitdiff_plain;h=b3a3d7099dce9e51d7163d724106e2e2fd8d9973;ds=sidebyside --- diff --git a/helper.c b/helper.c index 8218e49..aed5e9a 100644 --- a/helper.c +++ b/helper.c @@ -228,16 +228,16 @@ void drawFloor() { glColor3f( 1.0, 1.0, 1.0 ); glTexCoord2f( tx+textureTileSize, tz+textureTileSize ); - glVertex3f ( (x+1)*squareSize, 0.0, (z+1)*squareSize ); + glVertex3f ( (x+1)*subTileWidth, 0.0, (z+1)*subTileWidth ); glTexCoord2f( tx+textureTileSize, tz ); - glVertex3f ( (x+1)*squareSize, 0.0, z*squareSize ); + glVertex3f ( (x+1)*subTileWidth, 0.0, z*subTileWidth ); glTexCoord2f( tx, tz ); - glVertex3f ( x*squareSize, 0.0, z*squareSize ); + glVertex3f ( x*subTileWidth, 0.0, z*subTileWidth ); glTexCoord2f( tx, tz+textureTileSize ); - glVertex3f ( x*squareSize, 0.0, (z+1)*squareSize ); + glVertex3f ( x*subTileWidth, 0.0, (z+1)*subTileWidth ); } } }