From b8c364866a1d025e7b7cd9c3d89844b5818d06ef Mon Sep 17 00:00:00 2001 From: simon Date: Fri, 30 Apr 2004 10:11:53 +0000 Subject: [PATCH] Incorrect placing of the polyhedron sometimes left it on a blue square. Oops. git-svn-id: svn://svn.tartarus.org/sgt/puzzles@4175 cda61777-01e9-0310-a592-d414129be87e --- cube.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cube.c b/cube.c index 5940c8b..a0abf6d 100644 --- a/cube.c +++ b/cube.c @@ -559,7 +559,7 @@ char *new_game_seed(game_params *params) /* * Choose a non-blue square for the polyhedron. */ - sprintf(p, ":%d", rand_upto(m)); + sprintf(p, ":%d", data.gridptrs[0][rand_upto(m)]); sfree(data.gridptrs[0]); sfree(flags); -- 2.11.0