diff options
| author | Simon Tatham <anakin@pobox.com> | 2008-04-07 17:12:21 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2008-04-07 17:12:21 +0000 |
| commit | 30da25262d14155909acf6e445691e6f1365cca2 (patch) | |
| tree | 7c2da3f34e11e0e2313a5bd310faf2034825a69c | |
| parent | 93103eeca4e41ecaa874069b10f2a3de8c392435 (diff) | |
| download | puzzles-30da25262d14155909acf6e445691e6f1365cca2.zip puzzles-30da25262d14155909acf6e445691e6f1365cca2.tar.gz puzzles-30da25262d14155909acf6e445691e6f1365cca2.tar.bz2 puzzles-30da25262d14155909acf6e445691e6f1365cca2.tar.xz | |
Pedantic tweaks to allow successful compilation on Windows. (gcc
failed to point out a declaration after a statement, and gcc's
linker was clever enough to optimise the call to divvy_rectangle()
out of solosolver so that I didn't have to include divvy.c in that.)
[originally from svn r7975]
| -rw-r--r-- | solo.R | 4 | ||||
| -rw-r--r-- | solo.c | 4 |
2 files changed, 5 insertions, 3 deletions
@@ -6,8 +6,8 @@ solo : [X] GTK COMMON SOLO solo-icon|no-icon solo : [G] WINDOWS COMMON SOLO solo.res|noicon.res -solosolver : [U] solo[STANDALONE_SOLVER] dsf STANDALONE -solosolver : [C] solo[STANDALONE_SOLVER] dsf STANDALONE +solosolver : [U] solo[STANDALONE_SOLVER] divvy dsf STANDALONE +solosolver : [C] solo[STANDALONE_SOLVER] divvy dsf STANDALONE ALL += SOLO @@ -2571,6 +2571,8 @@ static char *validate_desc(game_params *params, char *desc) return "Too much data to fit in grid"; if (params->r == 1) { + int pos; + /* * Now we expect a suffix giving the jigsaw block * structure. Parse it and validate that it divides the @@ -2579,7 +2581,7 @@ static char *validate_desc(game_params *params, char *desc) */ if (*desc != ',') return "Expected jigsaw block structure in game description"; - int pos = 0; + pos = 0; dsf = snew_dsf(area); desc++; |