1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-26 08:32:00 +00:00

Added joy_stddrv

git-svn-id: svn://svn.cc65.org/cc65/trunk@1820 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-12-21 09:23:20 +00:00
parent 1d6264dff1
commit 4e61ec9270

View File

@ -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[];
/*****************************************************************************/