From 5bea6e2c7f34c340ebb8a0ccac18d695b9189618 Mon Sep 17 00:00:00 2001
From: nehalmistry <>
Date: Sat, 8 Nov 2003 23:02:13 +0000
Subject: [PATCH] remove SLOW_INPUT

---
 Rules.make.orig             | 1 -
 doc/faq.html                | 4 ----
 setup                       | 1 -
 src/stratagus/script.cpp    | 3 ---
 src/stratagus/stratagus.cpp | 3 ---
 5 files changed, 12 deletions(-)

diff --git a/Rules.make.orig b/Rules.make.orig
index 7d8582e01..16519ab17 100644
--- a/Rules.make.orig
+++ b/Rules.make.orig
@@ -184,7 +184,6 @@ IFLAGS=	-I$(TOPDIR)/src/include $(XIFLAGS) -I$(TOPDIR)/src/movie/vp31/include
 ## define flags
 #DEBUG=	-DDEBUG # -DREFS_DEBUG # -DFLAG_DEBUG
 ##
-## SLOW_INPUT		If you have problems that events aren't fetched.
 ## BPP8_*               Only for X11 8bpp common palette:
 ##   BPP8_NORMAL          disables default, like other Xbpp (delivers errors)
 ##   BPP8_WINSAFE         Uses a windows safe palette instead.
diff --git a/doc/faq.html b/doc/faq.html
index 0140ed8ab..64abbbf95 100644
--- a/doc/faq.html
+++ b/doc/faq.html
@@ -40,10 +40,6 @@ For any questions not mentioned here, please visit
     again. If the problem still occurs, you will need to 'make' without 
     making dependencies first.<p>
 
-    <b>Q: The software cursor is too slow.</b><br>
-    A: This should be fixed in the latest stable release, if it still happens, 
-    compile in SDL video mode or add -DSLOW_INPUT to DFLAGS in Rules.make.<p>
-
     <b>Q: Does Stratagus work with ALSA?</b><br>
     A: Yes, if you compiled SDL with alsa support and you compiled stratagus
     using SDL video mode.<p>
diff --git a/setup b/setup
index 1fcf63c98..21aeadeaa 100755
--- a/setup
+++ b/setup
@@ -33,7 +33,6 @@ EXTRA_LDFLAGS="$LDFLAGS"
 
 ## These could be used for experimental versions
 ## ---------------------------------------------
-## SLOW_INPUT		If you have problems that events aren't fetched.
 ## BPP8_*               Only for X11 8bpp common palette:
 ##   BPP8_NORMAL          disables default, like other Xbpp (delivers errors)
 ##   BPP8_WINSAFE         Uses a windows safe palette instead.
diff --git a/src/stratagus/script.cpp b/src/stratagus/script.cpp
index 0febf2e8e..87e753689 100644
--- a/src/stratagus/script.cpp
+++ b/src/stratagus/script.cpp
@@ -1043,9 +1043,6 @@ global void InitCcl(void)
 #ifdef HIERARCHIC_PATHFINDER
     gh_define("stratagus-feature-hierarchic-pathfinder", SCM_BOOL_T);
 #endif
-#ifdef SLOW_INPUT
-    gh_define("stratagus-feature-slow-input", SCM_BOOL_T);
-#endif
 #ifdef USE_FLAC
     gh_define("stratagus-feature-flac", SCM_BOOL_T);
 #endif
diff --git a/src/stratagus/stratagus.cpp b/src/stratagus/stratagus.cpp
index 73d1b6856..48add61cd 100644
--- a/src/stratagus/stratagus.cpp
+++ b/src/stratagus/stratagus.cpp
@@ -1227,9 +1227,6 @@ local void PrintHeader(void)
 #endif
 #ifdef HIERARCHIC_PATHFINDER
     "HIERARCHIC-PATHFINDER "
-#endif
-#ifdef SLOW_INPUT
-    "SLOW-INPUT "
 #endif
 	, NameLine);
 }