]> git.sur5r.net Git - cc65/commitdiff
VIC20 needs other joystick constants
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 8 Aug 2002 12:28:11 +0000 (12:28 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 8 Aug 2002 12:28:11 +0000 (12:28 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1383 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/joystick.h

index 141c7533ecc1e466a5ccf512c41ef057b2c2dc43..f541cd0b809eeed8cf0b6657f51158281a566b18 100644 (file)
 /* Result codes of the function. The actual code is a bitwise or
  * of one or more of the following values.
  */
-#define JOY_UP         0x01
-#define JOY_DOWN       0x02
-#define JOY_LEFT       0x04
-#define JOY_RIGHT      0x08
-#define JOY_FIRE       0x10
+#if defined(__VIC20__)
+#  define JOY_UP        0x04
+#  define JOY_DOWN      0x08
+#  define JOY_LEFT      0x10
+#  define JOY_RIGHT     0x80
+#  define JOY_FIRE      0x20
+#else
+#  define JOY_UP               0x01
+#  define JOY_DOWN     0x02
+#  define JOY_LEFT     0x04
+#  define JOY_RIGHT    0x08
+#  define JOY_FIRE     0x10
+#endif