]> git.sur5r.net Git - cc65/commitdiff
fix last change 125/head
authorChristian Groessler <chris@groessler.org>
Mon, 2 Jun 2014 06:41:35 +0000 (08:41 +0200)
committerChristian Groessler <chris@groessler.org>
Mon, 2 Jun 2014 06:41:35 +0000 (08:41 +0200)
testcode/lib/joy-test.c

index bea8be7181af171c4b277956035540d9ae99045a..0a5c809022c31d21c5257c7897c8b9ec6c029a57 100644 (file)
@@ -5,16 +5,20 @@
 #include <conio.h>
 #include <joystick.h>
 
-#ifdef MOUSE_DRIVER
+
+#ifdef JOYSTICK_DRIVER
+
 /* A statically linked driver was named on the compiler's command line.
 ** Make sure that it is used instead of a dynamic one.
 */
 #  undef DYN_DRV
 #  define DYN_DRV       0
-#endif
+#else
 
-#if defined(__NES__) || defined(__ATARI5200__)
-#define NO_OSERROR
+/* Use a dynamically loaded driver, by default. */
+#  ifndef DYN_DRV
+#    define DYN_DRV     1
+#  endif
 #endif
 
 
@@ -26,15 +30,15 @@ int main (void)
 
 #if DYN_DRV
     unsigned char Res = joy_load_driver (joy_stddrv);
-#elif defined(MOUSE_DRIVER)
-    unsigned char Res = joy_install (&MOUSE_DRIVER);
+#elif defined(JOYSTICK_DRIVER)
+    unsigned char Res = joy_install (&JOYSTICK_DRIVER);
 #else
     unsigned char Res = joy_install (&joy_static_stddrv);
 #endif
 
     if (Res != JOY_ERR_OK) {
         cprintf ("Error in joy_load_driver: %u\r\n", Res);
-#ifndef NO_OSERROR
+#if DYN_DRV
         cprintf ("os: %u, %s\r\n", _oserror, _stroserror (_oserror));
 #endif
         exit (EXIT_FAILURE);