]> git.sur5r.net Git - cc65/blobdiff - samples/tgidemo.c
Fixed an error in the special purpose allocator in expr.c.
[cc65] / samples / tgidemo.c
index 8e663ae2c707ed175162d9b08abdca2df772e2cb..ccefdb5c14259ba44107833a155040ea172fc5eb 100644 (file)
@@ -5,6 +5,7 @@
 #include <ctype.h>
 #include <modload.h>
 #include <tgi.h>
+#include <tgi/tgi-kernel.h>
 
 
 
@@ -21,6 +22,7 @@
 /* Driver stuff */
 static unsigned MaxX;
 static unsigned MaxY;
+static unsigned AspectRatio;
 
 
 
@@ -70,7 +72,7 @@ static void DoCircles (void)
         tgi_line (0, MaxY, MaxX, 0);
         tgi_setcolor (Color);
         for (I = 10; I < 240; I += 10) {
-            tgi_circle (X, Y, I);
+            tgi_ellipse (X, Y, I, tgi_imulround (I, AspectRatio));
         }
        Color = Color == COLOR_FORE ? COLOR_BACK : COLOR_FORE;
     }
@@ -191,6 +193,7 @@ int main (void)
     /* Get stuff from the driver */
     MaxX = tgi_getmaxx ();
     MaxY = tgi_getmaxy ();
+    AspectRatio = tgi_getaspectratio ();
 
     /* Set the palette, set the border color */
     Border = bordercolor (COLOR_BLACK);