diff options
| author | Simon Tatham <anakin@pobox.com> | 2007-02-28 21:19:15 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2007-02-28 21:19:15 +0000 |
| commit | 9287d95d0810e6fc76625aa270ecdff297934c55 (patch) | |
| tree | d3d43a32a15410a08e1df3b866ac3f56e8b3ad21 /galaxies.c | |
| parent | de5ccc9352d0156600c0ed1e87daac28015e8c01 (diff) | |
| download | puzzles-9287d95d0810e6fc76625aa270ecdff297934c55.zip puzzles-9287d95d0810e6fc76625aa270ecdff297934c55.tar.gz puzzles-9287d95d0810e6fc76625aa270ecdff297934c55.tar.bz2 puzzles-9287d95d0810e6fc76625aa270ecdff297934c55.tar.xz | |
General cleanups patch from James H:
- missing static in filling.c
- better robustness in execute_move() in filling.c
- remove side effects in assert statements
- remove rogue diagnostic in galaxies.c
- remove // comment in map.c
- add more stylus-friendly UI to Pattern
- bias Unequal towards generating inequality clues rather than numeric
[originally from svn r7344]
Diffstat (limited to 'galaxies.c')
| -rw-r--r-- | galaxies.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -298,8 +298,8 @@ static void add_assoc(game_state *state, space *tile, space *dot) { tile->dotx = dot->x; tile->doty = dot->y; dot->nassoc++; - debug(("add_assoc sp %d %d --> dot %d,%d, new nassoc %d.\n", - tile->x, tile->y, dot->x, dot->y, dot->nassoc)); + /*debug(("add_assoc sp %d %d --> dot %d,%d, new nassoc %d.\n", + tile->x, tile->y, dot->x, dot->y, dot->nassoc));*/ } static struct space *sp2dot(game_state *state, int x, int y) |