diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2009-01-04 23:33:15 +0000 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2009-01-04 23:33:15 +0000 |
| commit | 6d5823f964d8cc2b030d7a713d355f3132e41c45 (patch) | |
| tree | 4ca09cc6020717948fd21bccdd29265ed2c454fc /apps/plugins/bubbles.c | |
| parent | d32ebec9dadb053ab6d63aaa581465ad18ec572e (diff) | |
| download | rockbox-6d5823f964d8cc2b030d7a713d355f3132e41c45.zip rockbox-6d5823f964d8cc2b030d7a713d355f3132e41c45.tar.gz rockbox-6d5823f964d8cc2b030d7a713d355f3132e41c45.tar.bz2 rockbox-6d5823f964d8cc2b030d7a713d355f3132e41c45.tar.xz | |
Commit FS#9617 - Keymaps for Plugins fuze by Thomas Martitz.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19673 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/bubbles.c')
| -rw-r--r-- | apps/plugins/bubbles.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/plugins/bubbles.c b/apps/plugins/bubbles.c index ecd9096..0894c75 100644 --- a/apps/plugins/bubbles.c +++ b/apps/plugins/bubbles.c @@ -59,8 +59,11 @@ PLUGIN_HEADER #define MAX_SHOTTIME 1000 /* keyboard layouts */ -#if CONFIG_KEYPAD != SANSA_E200_PAD -/* sansa uses the wheel instead of left/right */ +/* FIXME: shouldn't the below be #ifdef HAVE_SCROLLWHEEL rather? */ + +#if (CONFIG_KEYPAD != SANSA_E200_PAD) && \ + (CONFIG_KEYPAD != SANSA_FUZE_PAD) +/* sansas use the wheel instead of left/right if available */ #define BUBBLES_LEFT PLA_LEFT #define BUBBLES_LEFT_REP PLA_LEFT_REPEAT #define BUBBLES_RIGHT PLA_RIGHT |