(no commit message)
authorAsh Tyndall <[email protected]>
Tue, 18 Oct 2011 11:51:24 +0000 (19:51 +0800)
committerAsh Tyndall <[email protected]>
Tue, 18 Oct 2011 11:51:24 +0000 (19:51 +0800)
scene.c

diff --git a/scene.c b/scene.c
index aaa8ba1..fc935d0 100644 (file)
--- a/scene.c
+++ b/scene.c
@@ -597,14 +597,13 @@ int drawFloorRecurse = 2;
   drawSquare(0, x1, y1, x2, y2);\r
 }*/\r
 \r
-void drawSquare(int recurseLevel, float x1, float y1, float x2, float y2) {\r
+void drawSquare(int recurseLevel, GLfloat x1, GLfloat y1, GLfloat x2, GLfloat y2) {\r
 \r
-  \r
+  printf("%d, %d, %d, %d\n", x1, y2, x2, y2);\r
 \r
   if ( drawFloorRecurse != recurseLevel ) {\r
-    printf("Drawing (%.10f, %.10f) -> (%.10f, %.10f)\n", x1, y2, x2, y2);\r
-    float xm = (x1 + x2) / 2.0;\r
-    float ym = (y1 + y2) / 2.0;\r
+    GLfloat xm = (x1 + x2) / 2.0;\r
+    GLfloat ym = (y1 + y2) / 2.0;\r
     int rnew = recurseLevel + 1;\r
     printf("Recursing to level %d\n", rnew);\r
 \r

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