summaryrefslogtreecommitdiff
path: root/apps/plugins/sudoku/sudoku.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/sudoku/sudoku.c')
-rw-r--r--apps/plugins/sudoku/sudoku.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/plugins/sudoku/sudoku.c b/apps/plugins/sudoku/sudoku.c
index 9485f2de23..1d548ace6d 100644
--- a/apps/plugins/sudoku/sudoku.c
+++ b/apps/plugins/sudoku/sudoku.c
@@ -108,6 +108,14 @@ static const char default_game[9][9] =
108#define CELL_HEIGHT 6 108#define CELL_HEIGHT 6
109#define SMALL_BOARD 109#define SMALL_BOARD
110 110
111#elif ((LCD_HEIGHT==80) && (LCD_WIDTH==132))
112/* C200, 9 cells @ 8x8 with 8 border lines */
113
114/* Internal dimensions of a cell */
115#define CELL_WIDTH 8
116#define CELL_HEIGHT 8
117#define SMALL_BOARD
118
111#elif (LCD_HEIGHT==110) && (LCD_WIDTH==138) 119#elif (LCD_HEIGHT==110) && (LCD_WIDTH==138)
112/* iPod Mini - 138x110, 9 cells @ 10x10 with 14 border lines */ 120/* iPod Mini - 138x110, 9 cells @ 10x10 with 14 border lines */
113 121