From 997b4277d8678a2f1e8cc35ed5d9e2c84ab4c768 Mon Sep 17 00:00:00 2001 From: Ash Tyndall Date: Fri, 21 Oct 2011 13:53:05 +0800 Subject: [PATCH] --- helper.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/helper.c b/helper.c index 1d91545..a058587 100644 --- a/helper.c +++ b/helper.c @@ -214,10 +214,11 @@ void drawFloor() { for ( int x = -floorSize; x < floorSize; x++ ) { for ( int z = -floorSize; z < floorSize; z++ ) { glColor3f( 1.0, 1.0, 1.0 ); + glVertex3f( x*squareSize, 0.0, z*squareSize ); glVertex3f( (x+1)*squareSize, 0.0, z*squareSize ); glVertex3f( (x+1)*squareSize, 0.0, (z+1)*squareSize ); glVertex3f( x*squareSize, 0.0, (z+1)*squareSize ); - glVertex3f( x*squareSize, 0.0, z*squareSize ); + } } -- 2.20.1