1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-11 20:29:36 +00:00

Made mousetest.c know that the CBM510 has a lightpen driver.

This commit is contained in:
Greg King 2013-09-09 17:09:33 -04:00
parent e0c8c7dcb1
commit 34c23c4c7d

View 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