Use && and || in preprocessor #if statements. Other minor changes.

git-svn-id: svn://svn.cc65.org/cc65/trunk@866 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2001-09-08 14:39:01 +00:00
parent def6300556
commit 6e29f555d2
5 changed files with 46 additions and 80 deletions

View File

@@ -39,16 +39,7 @@
/* Define __JOYSTICK__ for systems that support a joystick */
#ifdef __ATARI__
# define __JOYSTICK__
#endif
#ifdef __C64__
# define __JOYSTICK__
#endif
#ifdef __C128__
# define __JOYSTICK__
#endif
#ifdef __PLUS4__
#if defined(__ATARI__) || defined(__C64__) || defined(__C128__) || defined(__PLUS4__)
# define __JOYSTICK__
#endif