diff src/keyboard.c @ 61496:b06b2e541697

(poll_for_input) [SYNC_INPUT]: Don't call poll_for_input_1. Set interrupt_input_pending to 1 instead.
author YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
date Tue, 12 Apr 2005 08:07:13 +0000
parents 662ca833c8e0
children f914c4fa9610
line wrap: on
line diff
--- a/src/keyboard.c	Tue Apr 12 03:11:23 2005 +0000
+++ b/src/keyboard.c	Tue Apr 12 08:07:13 2005 +0000
@@ -2115,7 +2115,11 @@
      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 */