diff options
Diffstat (limited to '')
| -rw-r--r-- | apps/plugins/puzzles/src/pattern.c (renamed from apps/plugins/puzzles/pattern.c) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/puzzles/pattern.c b/apps/plugins/puzzles/src/pattern.c index c741a2e..9a74e55 100644 --- a/apps/plugins/puzzles/pattern.c +++ b/apps/plugins/puzzles/src/pattern.c @@ -5,7 +5,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include "rbassert.h" +#include <assert.h> #include <ctype.h> #include <math.h> @@ -1971,7 +1971,7 @@ static void game_print(drawing *dr, const game_state *state, int tilesize) const struct game thegame = { "Pattern", "games.pattern", "pattern", default_params, - game_fetch_preset, + game_fetch_preset, NULL, decode_params, encode_params, free_params, |