summaryrefslogtreecommitdiff
path: root/apps/plugins/pong.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/pong.c')
-rw-r--r--apps/plugins/pong.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/plugins/pong.c b/apps/plugins/pong.c
index adba3f5379..421ae0295c 100644
--- a/apps/plugins/pong.c
+++ b/apps/plugins/pong.c
@@ -57,6 +57,7 @@ PLUGIN_HEADER
57#define PONG_LEFT_DOWN BUTTON_DOWN 57#define PONG_LEFT_DOWN BUTTON_DOWN
58#define PONG_RIGHT_UP BUTTON_ON 58#define PONG_RIGHT_UP BUTTON_ON
59#define PONG_RIGHT_DOWN BUTTON_MODE 59#define PONG_RIGHT_DOWN BUTTON_MODE
60#define PONG_RC_QUIT BUTTON_RC_STOP
60 61
61#elif (CONFIG_KEYPAD == IPOD_4G_PAD) || \ 62#elif (CONFIG_KEYPAD == IPOD_4G_PAD) || \
62 (CONFIG_KEYPAD == IPOD_3G_PAD) 63 (CONFIG_KEYPAD == IPOD_3G_PAD)
@@ -298,7 +299,11 @@ int keys(struct pong *p)
298 while(end > *rb->current_tick) { 299 while(end > *rb->current_tick) {
299 key = rb->button_get_w_tmo(end - *rb->current_tick); 300 key = rb->button_get_w_tmo(end - *rb->current_tick);
300 301
301 if(key & PONG_QUIT) 302 if(key & PONG_QUIT
303#ifdef PONG_RC_QUIT
304 || key & PONG_RC_QUIT
305#endif
306 )
302 return 0; /* exit game NOW */ 307 return 0; /* exit game NOW */
303 308
304 if(key & PONG_LEFT_DOWN) /* player left goes down */ 309 if(key & PONG_LEFT_DOWN) /* player left goes down */