From: Alan Cox Date: Fri, 6 Jul 2018 21:22:46 +0000 (+0100) Subject: trs80m1: devinput sync with graphics changes X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=62450aff158bf88039d2127bbc78235688700661;p=FUZIX.git trs80m1: devinput sync with graphics changes --- diff --git a/Kernel/platform-trs80m1/devinput.c b/Kernel/platform-trs80m1/devinput.c index 36c85b60..60bf1f16 100644 --- a/Kernel/platform-trs80m1/devinput.c +++ b/Kernel/platform-trs80m1/devinput.c @@ -30,7 +30,7 @@ int platform_input_read(uint8_t *slot) } /* Clashes with Alpha joystick */ - if (has_hr1g) + if (has_hrg1) return 0; r = ~stick; @@ -74,7 +74,7 @@ int platform_input_write(uint8_t flag) void poll_input(void) { - if (has_hr1g) + if (has_hrg1) return; if (~stick != old_stick) wakeup(&kqueue);