]> git.sur5r.net Git - cc65/commitdiff
Made mousetest.c know that the CBM510 has a lightpen driver.
authorGreg King <gregdk@users.sf.net>
Mon, 9 Sep 2013 21:09:33 +0000 (17:09 -0400)
committerGreg King <gregdk@users.sf.net>
Mon, 9 Sep 2013 21:09:33 +0000 (17:09 -0400)
samples/mousetest.c

index e5ee4ca49e5ae0120d8c5b7f6e743bc44748decf..7d94096596018f69b1a1db5f19c447769355950c 100644 (file)
@@ -3,7 +3,7 @@
 ** Will work for the C64/C128/CBM510/Atari/Apple2.
 **
 ** 2001-09-13, Ullrich von Bassewitz
-** 2013-08-23, Greg King
+** 2013-09-05, Greg King
 **
 */
 
@@ -183,7 +183,7 @@ int main (void)
     ** the value will be put into this file, for the next time.
     ** (Other drivers will ignore this.)
     */
-#if defined(__C64__) || defined(__C128__)
+#if defined(__C64__) || defined(__C128__) || defined(__CBM510__)
     pen_adjust ("pen.dat");
 #endif