summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-02-04 13:06:06 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-02-04 13:06:06 +0000
commit089d73a8b0efad8f3511cebd2863d0d5521dc30d (patch)
treec90cba78f7fdc4232762c92764f286e1fc0c957c /apps
parentb3272f4c325a06d11b5dbe2730b285a5c1d0485f (diff)
downloadrockbox-089d73a8b0efad8f3511cebd2863d0d5521dc30d.tar.gz
rockbox-089d73a8b0efad8f3511cebd2863d0d5521dc30d.zip
Let's do an ifdef here to prevent builds for iriver since the keymapping
isn't fixed for it (yet). Feel free to help! git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5787 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/solitaire.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c
index 37d9f1ee78..20be137c62 100644
--- a/apps/plugins/solitaire.c
+++ b/apps/plugins/solitaire.c
@@ -36,6 +36,7 @@ use F3 to put card on top of the remains' stack on one of the 4 final color
36#include "lcd.h" 36#include "lcd.h"
37 37
38#ifdef HAVE_LCD_BITMAP 38#ifdef HAVE_LCD_BITMAP
39#if CONFIG_KEYPAD != IRIVER_H100_PAD /* FIX! */
39 40
40/* here is a global api struct pointer. while not strictly necessary, 41/* here is a global api struct pointer. while not strictly necessary,
41 it's nice not to have to pass the api pointer in all function calls 42 it's nice not to have to pass the api pointer in all function calls
@@ -1192,4 +1193,5 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
1192 return (result == SOLITAIRE_USB) ? PLUGIN_USB_CONNECTED : PLUGIN_OK; 1193 return (result == SOLITAIRE_USB) ? PLUGIN_USB_CONNECTED : PLUGIN_OK;
1193} 1194}
1194 1195
1196#endif /* iRiver h100 keypad */
1195#endif 1197#endif