summaryrefslogtreecommitdiff
path: root/apps/plugins/puzzles/src/grid.h
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2017-10-23 17:19:29 -0400
committerFranklin Wei <git@fwei.tk>2017-10-23 17:19:29 -0400
commitef1306764e6443d67612542654f252b376c5993e (patch)
tree5f064178c1f9a23695b1b52b8bd487434be9006e /apps/plugins/puzzles/src/grid.h
parent7a8c9daf7ef5a8b38d4c4f6625ff2d9d8eb1aa0a (diff)
downloadrockbox-ef1306764e6443d67612542654f252b376c5993e.tar.gz
rockbox-ef1306764e6443d67612542654f252b376c5993e.zip
puzzles: resync with upstream
There have been some improvements with regard to small screen sizes, which will be nice to have. Change-Id: I30c740514156258d2818fde325c1a751500f7611
Diffstat (limited to 'apps/plugins/puzzles/src/grid.h')
-rw-r--r--apps/plugins/puzzles/src/grid.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/puzzles/src/grid.h b/apps/plugins/puzzles/src/grid.h
index fb8ac48790..19079a44b8 100644
--- a/apps/plugins/puzzles/src/grid.h
+++ b/apps/plugins/puzzles/src/grid.h
@@ -116,8 +116,8 @@ typedef enum grid_type { GRIDGEN_LIST(ENUM) GRID_TYPE_MAX } grid_type;
116/* Free directly after use if non-NULL. Will never contain an underscore 116/* Free directly after use if non-NULL. Will never contain an underscore
117 * (so clients can safely use that as a separator). */ 117 * (so clients can safely use that as a separator). */
118char *grid_new_desc(grid_type type, int width, int height, random_state *rs); 118char *grid_new_desc(grid_type type, int width, int height, random_state *rs);
119char *grid_validate_desc(grid_type type, int width, int height, 119const char *grid_validate_desc(grid_type type, int width, int height,
120 const char *desc); 120 const char *desc);
121 121
122grid *grid_new(grid_type type, int width, int height, const char *desc); 122grid *grid_new(grid_type type, int width, int height, const char *desc);
123 123