diff options
| author | Simon Tatham <anakin@pobox.com> | 2018-11-13 22:06:19 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2018-11-13 22:06:19 +0000 |
| commit | db3b531e2cab765a00475054d2e9046c9d0437d3 (patch) | |
| tree | f029f201ad3dec7ba0dac6e1c18eb1ed4da98c4c /lightup.c | |
| parent | 47cec547e59ac8c5012f6091394dcb4304d64fc3 (diff) | |
| download | puzzles-db3b531e2cab765a00475054d2e9046c9d0437d3.zip puzzles-db3b531e2cab765a00475054d2e9046c9d0437d3.tar.gz puzzles-db3b531e2cab765a00475054d2e9046c9d0437d3.tar.bz2 puzzles-db3b531e2cab765a00475054d2e9046c9d0437d3.tar.xz | |
Add missing 'static' to game-internal declarations.
Another thing I spotted while trawling the whole source base was that
a couple of games had omitted 'static' on a lot of their internal
functions. Checking with nm, there turned out to be quite a few more
than I'd spotted by eye, so this should fix them all.
Also added one missing 'const', on the lookup table nbits[] in Tracks.
Diffstat (limited to 'lightup.c')
| -rw-r--r-- | lightup.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -179,7 +179,7 @@ static void get_surrounds(const game_state *state, int ox, int oy, #define DEFAULT_PRESET 0 -const struct game_params lightup_presets[] = { +static const struct game_params lightup_presets[] = { { 7, 7, 20, SYMM_ROT4, 0 }, { 7, 7, 20, SYMM_ROT4, 1 }, { 7, 7, 20, SYMM_ROT4, 2 }, |