diff options
| author | Simon Tatham <anakin@pobox.com> | 2012-09-10 18:05:54 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2012-09-10 18:05:54 +0000 |
| commit | 0e8a37581418222ab7bd6063fa13371efd9f9f23 (patch) | |
| tree | 5fc84d936a301dd6b19921de422c62132d840a4b /unfinished/separate.c | |
| parent | 0880ef058328c1cad8b5dac8b0e19551bb9bccd1 (diff) | |
| download | puzzles-0e8a37581418222ab7bd6063fa13371efd9f9f23.zip puzzles-0e8a37581418222ab7bd6063fa13371efd9f9f23.tar.gz puzzles-0e8a37581418222ab7bd6063fa13371efd9f9f23.tar.bz2 puzzles-0e8a37581418222ab7bd6063fa13371efd9f9f23.tar.xz | |
Forgot to add the new 'const' in the unfinished subdirectory. Oops.
[originally from svn r9659]
Diffstat (limited to 'unfinished/separate.c')
| -rw-r--r-- | unfinished/separate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unfinished/separate.c b/unfinished/separate.c index b20cb52..ee9c830 100644 --- a/unfinished/separate.c +++ b/unfinished/separate.c @@ -718,8 +718,8 @@ struct game_drawstate { int FIXME; }; -static char *interpret_move(game_state *state, game_ui *ui, game_drawstate *ds, - int x, int y, int button) +static char *interpret_move(game_state *state, game_ui *ui, + const game_drawstate *ds, int x, int y, int button) { return NULL; } |