Patch from James H: tinker with the presets on SLOW_SYSTEMs.
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Thu, 4 Aug 2005 17:08:26 +0000 (17:08 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Thu, 4 Aug 2005 17:08:26 +0000 (17:08 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/puzzles@6162 cda61777-01e9-0310-a592-d414129be87e

samegame.c

index b9078eb..d8c58ac 100644 (file)
@@ -149,7 +149,11 @@ static game_params *default_params(void)
 static const struct game_params samegame_presets[] = {
     { 5, 5, 3, 2, TRUE },
     { 10, 5, 3, 2, TRUE },
+#ifdef SLOW_SYSTEM
+    { 10, 10, 3, 2, TRUE },
+#else
     { 15, 10, 3, 2, TRUE },
+#endif
     { 15, 10, 4, 2, TRUE },
     { 20, 15, 4, 2, TRUE }
 };