]> git.sur5r.net Git - cc65/commitdiff
style fixes 605/head
authormrdudz <mrdudz@users.noreply.github.com>
Thu, 8 Mar 2018 03:05:10 +0000 (04:05 +0100)
committermrdudz <mrdudz@users.noreply.github.com>
Thu, 8 Mar 2018 03:05:10 +0000 (04:05 +0100)
testcode/lib/joy-test.c

index 167534137319f2557587218e12e7885992adb09e..3d584bf9d36e32093507ed5eebe4086b1a563e7c 100644 (file)
 #  define DYN_DRV       0
 
 /*
- * link existing drivers like this:
- *
- * cl65 -DJOYSTICK_DRIVER=c64_hitjoy_joy -o joy-test.prg joy-test.c
- *
- * for testing a new driver you will have to uncomment the define below, and
- * link your driver like this:
- *
- * co65 ../../target/c64/drv/joy/c64-hitjoy.joy -o hitjoy.s --code-label _hitjoy
- * cl65 -DJOYSTICK_DRIVER=hitjoy -o joy-test.prg joy-test.c hitjoy.s
- *
+** link existing drivers like this:
+**
+** cl65 -DJOYSTICK_DRIVER=c64_hitjoy_joy -o joy-test.prg joy-test.c
+**
+** for testing a new driver you will have to uncomment the define below, and
+** link your driver like this:
+**
+** co65 ../../target/c64/drv/joy/c64-hitjoy.joy -o hitjoy.s --code-label _hitjoy
+** cl65 -DJOYSTICK_DRIVER=hitjoy -o joy-test.prg joy-test.c hitjoy.s
+**
 */
 
 /* extern char JOYSTICK_DRIVER; */
@@ -93,12 +93,12 @@ int main (void)
         }
 
         /* show pressed key, so we can verify keyboard is working */
-        kb = kbhit();
-        ch = kb ? cgetc() : ' ';
+        kb = kbhit ();
+        ch = kb ? cgetc () : ' ';
         gotoxy (1, i+2);
-        revers(kb);
-        cprintf("kbd: %c", ch);
-        revers(0);
+        revers (kb);
+        cprintf ("kbd: %c", ch);
+        revers (0);
     }
     return 0;
 }