summaryrefslogtreecommitdiff
path: root/apps/plugins/snow.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/snow.c')
-rw-r--r--apps/plugins/snow.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/apps/plugins/snow.c b/apps/plugins/snow.c
index 10b41c972b..c7d7ad31d8 100644
--- a/apps/plugins/snow.c
+++ b/apps/plugins/snow.c
@@ -30,8 +30,14 @@ static const struct button_mapping *plugin_contexts[] = { pla_main_ctx };
30 30
31/* PLA definitions */ 31/* PLA definitions */
32#define SNOW_QUIT PLA_EXIT 32#define SNOW_QUIT PLA_EXIT
33#define SNOW_QUIT2 PLA_CANCEL
34 33
34#if (CONFIG_KEYPAD == IPOD_1G2G_PAD) \
35 || (CONFIG_KEYPAD == IPOD_3G_PAD) \
36 || (CONFIG_KEYPAD == IPOD_4G_PAD)
37#define SNOW_QUIT2 PLA_UP
38#else
39#define SNOW_QUIT2 PLA_CANCEL
40#endif
35static short particles[NUM_PARTICLES][2]; 41static short particles[NUM_PARTICLES][2];
36 42
37#if LCD_WIDTH >= 160 43#if LCD_WIDTH >= 160