From: cuz Date: Sat, 21 Dec 2002 09:23:20 +0000 (+0000) Subject: Added joy_stddrv X-Git-Tag: V2.12.0~1851 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=4e61ec9270846d3ae3f84b4de6b594bf114bf6cf;p=cc65 Added joy_stddrv git-svn-id: svn://svn.cc65.org/cc65/trunk@1820 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/include/joystick.h b/include/joystick.h index 4b504919c..fcc7146cb 100644 --- a/include/joystick.h +++ b/include/joystick.h @@ -72,6 +72,9 @@ extern const unsigned char joy_masks[8]; #define JOY_BTN_RIGHT(v) ((v) & joy_masks[JOY_RIGHT]) #define JOY_BTN_FIRE(v) ((v) & joy_masks[JOY_FIRE]) +/* The name of the standard joystick driver for a platform */ +extern const char joy_stddrv[]; + /*****************************************************************************/