From 47d4d62d1f02715f1248a78b7546caa2765ddc7a Mon Sep 17 00:00:00 2001 From: cuz Date: Tue, 10 Dec 2002 23:38:49 +0000 Subject: [PATCH] The C16 does also support a joystick git-svn-id: svn://svn.cc65.org/cc65/trunk@1733 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- include/joystick.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/joystick.h b/include/joystick.h index 770fdc6f7..4258c58f0 100644 --- a/include/joystick.h +++ b/include/joystick.h @@ -39,9 +39,9 @@ /* Define __JOYSTICK__ for systems that support a joystick */ -#if defined(__ATARI__) || defined(__C64__) || defined(__C128__) || defined(__PLUS4__) || defined(__CBM510__) || defined(__VIC20__) +#if defined(__ATARI__) || defined(__C16__) || defined(__C64__) || defined(__C128__) || defined(__PLUS4__) || defined(__CBM510__) || defined(__VIC20__) # define __JOYSTICK__ -#else +#else # error The target system does not support a joystick! # endif -- 2.39.5