diff options
| author | Simon Tatham <anakin@pobox.com> | 2005-06-01 07:01:32 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2005-06-01 07:01:32 +0000 |
| commit | 5b5fc1417ba70e670d1d84fa8cae535eb4f87f23 (patch) | |
| tree | f2d226f859a4a4b9560cb479c1133c85963ff2ce /pattern.c | |
| parent | 695b6be363115a0aefc5a25b93432d9362ad4cf7 (diff) | |
| download | puzzles-5b5fc1417ba70e670d1d84fa8cae535eb4f87f23.zip puzzles-5b5fc1417ba70e670d1d84fa8cae535eb4f87f23.tar.gz puzzles-5b5fc1417ba70e670d1d84fa8cae535eb4f87f23.tar.bz2 puzzles-5b5fc1417ba70e670d1d84fa8cae535eb4f87f23.tar.xz | |
Patches from Richard B for Solo:
- prevent highlighting a clue square at all
- enable easier switching between highlight types by not requiring
a left-click highlight to be left-click-cancelled before
right-clicking, and vice versa
- fix bit-rot in -DSTANDALONE_SOLVER
Also one of mine:
- replicate Richard's -DSTANDALONE_SOLVER fix in Pattern, where it
was also broken.
[originally from svn r5892]
Diffstat (limited to 'pattern.c')
| -rw-r--r-- | pattern.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1221,7 +1221,7 @@ int main(int argc, char **argv) fprintf(stderr, "%s: %s\n", argv[0], err); return 1; } - s = new_game(p, desc); + s = new_game(NULL, p, desc); { int w = p->w, h = p->h, i, j, done_any, max; |