summaryrefslogtreecommitdiff
path: root/apps/plugins/wormlet.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/wormlet.c')
-rw-r--r--apps/plugins/wormlet.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/plugins/wormlet.c b/apps/plugins/wormlet.c
index d76f6a7d5a..162cea6208 100644
--- a/apps/plugins/wormlet.c
+++ b/apps/plugins/wormlet.c
@@ -407,6 +407,9 @@ CONFIG_KEYPAD == MROBE500_PAD
407#define BTN_QUIT BUTTON_POWER 407#define BTN_QUIT BUTTON_POWER
408#define BTN_STOPRESET BUTTON_BACK 408#define BTN_STOPRESET BUTTON_BACK
409 409
410#elif CONFIG_KEYPAD == SHANLING_Q1_PAD
411/* use touchscreen */
412
410#else 413#else
411#error No keymap defined! 414#error No keymap defined!
412#endif 415#endif
@@ -492,7 +495,8 @@ CONFIG_KEYPAD == MROBE500_PAD
492#define SPEED 4 495#define SPEED 4
493#define MAX_WORM_SEGMENTS 512 496#define MAX_WORM_SEGMENTS 512
494#elif ((LCD_WIDTH == 320) && (LCD_HEIGHT == 240)) || \ 497#elif ((LCD_WIDTH == 320) && (LCD_HEIGHT == 240)) || \
495 ((LCD_WIDTH == 240) && ((LCD_HEIGHT == 320) || (LCD_HEIGHT == 400))) 498 ((LCD_WIDTH == 240) && ((LCD_HEIGHT == 320) || (LCD_HEIGHT == 400))) || \
499 ((LCD_WIDTH == 360) && (LCD_HEIGHT == 400))
496#define FOOD_SIZE 7 500#define FOOD_SIZE 7
497#define ARGH_SIZE 8 501#define ARGH_SIZE 8
498#define SPEED 4 502#define SPEED 4