diff options
Diffstat (limited to 'apps/plugins/wormlet.c')
| -rw-r--r-- | apps/plugins/wormlet.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/plugins/wormlet.c b/apps/plugins/wormlet.c index 1c78f33..c05918e 100644 --- a/apps/plugins/wormlet.c +++ b/apps/plugins/wormlet.c @@ -148,7 +148,8 @@ PLUGIN_HEADER #define WORMS_TEXT "Left/Right" -#elif (CONFIG_KEYPAD == SANSA_E200_PAD) +#elif (CONFIG_KEYPAD == SANSA_E200_PAD) || \ +(CONFIG_KEYPAD == SANSA_C200_PAD) #define BTN_DIR_UP BUTTON_UP #define BTN_DIR_DOWN BUTTON_DOWN @@ -182,6 +183,11 @@ PLUGIN_HEADER #define ARGH_SIZE 4 #define SPEED 14 #define MAX_WORM_SEGMENTS 128 +#elif (LCD_WIDTH == 132) && (LCD_HEIGHT == 80) +#define FOOD_SIZE 3 +#define ARGH_SIZE 4 +#define SPEED 14 +#define MAX_WORM_SEGMENTS 128 #elif (LCD_WIDTH == 138) && (LCD_HEIGHT == 110) #define FOOD_SIZE 4 #define ARGH_SIZE 5 |