From a42bf89089cbf64b48d3eaeafbaa9a0157177fd8 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Mitsuharu Date: Tue, 12 Apr 2005 08:07:13 +0000 Subject: [PATCH] (poll_for_input) [SYNC_INPUT]: Don't call poll_for_input_1. Set interrupt_input_pending to 1 instead. --- src/keyboard.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/keyboard.c b/src/keyboard.c index 07b2f991c38..0eb82533120 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -2115,7 +2115,11 @@ poll_for_input (timer) struct atimer *timer; { if (poll_suppress_count == 0) +#ifdef SYNC_INPUT + interrupt_input_pending = 1; +#else poll_for_input_1 (); +#endif } #endif /* POLL_FOR_INPUT */ -- 2.39.2