summaryrefslogtreecommitdiff
path: root/apps/plugins/alarmclock.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/alarmclock.c')
-rw-r--r--apps/plugins/alarmclock.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/plugins/alarmclock.c b/apps/plugins/alarmclock.c
index ecafceddc7..aa7c13d1a4 100644
--- a/apps/plugins/alarmclock.c
+++ b/apps/plugins/alarmclock.c
@@ -138,7 +138,13 @@ enum plugin_status plugin_start(const void* parameter)
138 while(!quit) { 138 while(!quit) {
139 button = get_button(); 139 button = get_button();
140 140
141#if (CONFIG_KEYPAD == IPOD_1G2G_PAD) \
142 || (CONFIG_KEYPAD == IPOD_3G_PAD) \
143 || (CONFIG_KEYPAD == IPOD_4G_PAD)
144 if (button == PLA_EXIT || button == PLA_CANCEL || button == PLA_UP)
145#else
141 if (button == PLA_EXIT || button == PLA_CANCEL) 146 if (button == PLA_EXIT || button == PLA_CANCEL)
147#endif
142 quit = true; 148 quit = true;
143 149
144 FOR_NB_SCREENS(i) { 150 FOR_NB_SCREENS(i) {