]> git.sur5r.net Git - cc65/commitdiff
Make use of doesclrscrafterexit().
authorOliver Schmidt <ol.sc@web.de>
Sat, 15 Oct 2016 13:45:17 +0000 (15:45 +0200)
committerOliver Schmidt <ol.sc@web.de>
Sat, 15 Oct 2016 13:47:25 +0000 (15:47 +0200)
samples/plasma.c

index 7b092ec818d8b50178a73027d76e7675e5363a90..ac17265f3791d01c858e9538ed7c5ac177fda3a7 100644 (file)
@@ -12,6 +12,7 @@
 #include <stdlib.h>
 #include <time.h>
 #include <conio.h>
+#include <cc65.h>
 
 
 
@@ -292,12 +293,11 @@ int main (void)
     gotoxy (0, 1); cprintf ("frames: %lu", f);
     gotoxy (0, 2); cprintf ("fps   : %lu.%u", fps, fps10);
 
-    /* Wait for a key, then end */
-    cputsxy (0, 4, "Press any key when done...");
-    (void) cgetc ();
+    if (doesclrscrafterexit ()) {
+        cputsxy (0, 4, "Press any key when done...");
+        (void) cgetc ();
+    }
 
     /* Done */
     return EXIT_SUCCESS;
 }
-
-