Revert the code that assumed that incoming parameters used a random generation
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Tue, 5 Jul 2005 21:40:29 +0000 (21:40 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Tue, 5 Jul 2005 21:40:29 +0000 (21:40 +0000)
scheme in r6068, since this messed up the non-permanency of the non-limited
parameter.

git-svn-id: svn://svn.tartarus.org/sgt/puzzles@6069 cda61777-01e9-0310-a592-d414129be87e

pegs.c

diff --git a/pegs.c b/pegs.c
index 5ed30d0..0709187 100644 (file)
--- a/pegs.c
+++ b/pegs.c
@@ -120,11 +120,6 @@ static void decode_params(game_params *params, char const *string)
         params->h = params->w;
     }
 
-    /*
-     * Assume a random generation scheme unless told otherwise, for the
-     * sake of internal consistency.
-     */
-    params->type = TYPE_RANDOM;
     for (i = 0; i < lenof(pegs_lowertypes); i++)
        if (!strcmp(p, pegs_lowertypes[i]))
            params->type = i;