From 4614b336e97233a3cea7ade9ac8c474bc46952e8 Mon Sep 17 00:00:00 2001 From: Ash Tyndall Date: Fri, 21 Oct 2011 13:51:52 +0800 Subject: [PATCH] --- helper.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/helper.c b/helper.c index 2dad7e6..499b5c7 100644 --- a/helper.c +++ b/helper.c @@ -214,11 +214,10 @@ void drawFloor() { for ( int x = -floorSize; x < floorSize; x++ ) { for ( int y = -floorSize; y < floorSize; y++ ) { glColor3f( 1.0, 1.0, 1.0 ); - glVertex3f( x*squareSize, 0.0, y*squareSize ); - glVertex3f( (x+1)*squareSize, 0.0, y*squareSize ); glVertex3f( (x+1)*squareSize, 0.0, (y+1)*squareSize ); glVertex3f( x*squareSize, 0.0, (y+1)*squareSize ); - + glVertex3f( x*squareSize, 0.0, y*squareSize ); + glVertex3f( (x+1)*squareSize, 0.0, y*squareSize ); } } glEnd(); -- 2.20.1