(no commit message)
authorAsh Tyndall <[email protected]>
Fri, 21 Oct 2011 05:51:52 +0000 (13:51 +0800)
committerAsh Tyndall <[email protected]>
Fri, 21 Oct 2011 05:51:52 +0000 (13:51 +0800)
helper.c

index 2dad7e6..499b5c7 100644 (file)
--- 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 );
     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+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();
       }
     }
        glEnd();

UCC git Repository :: git.ucc.asn.au