diff options
| author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2008-08-23 09:46:38 +0000 |
|---|---|---|
| committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2008-08-23 09:46:38 +0000 |
| commit | 1392dc2144a4b1810ba5c421f54e05dc1a3a74c7 (patch) | |
| tree | 7f7f7d6dd6ce00e8146896456549441d4e8153d7 /apps/plugins/plasma.c | |
| parent | 965d2af61f5035dcf5179b8539785de641a9f015 (diff) | |
| download | rockbox-1392dc2144a4b1810ba5c421f54e05dc1a3a74c7.zip rockbox-1392dc2144a4b1810ba5c421f54e05dc1a3a74c7.tar.gz rockbox-1392dc2144a4b1810ba5c421f54e05dc1a3a74c7.tar.bz2 rockbox-1392dc2144a4b1810ba5c421f54e05dc1a3a74c7.tar.xz | |
Commit FS#9308: differentiate between TOUCHPAD & TOUCHSCREEN
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18338 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/plasma.c')
| -rw-r--r-- | apps/plugins/plasma.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/plasma.c b/apps/plugins/plasma.c index 35ce9da..e1527e1 100644 --- a/apps/plugins/plasma.c +++ b/apps/plugins/plasma.c @@ -104,7 +104,7 @@ static int plasma_frequency; #endif -#ifdef HAVE_TOUCHPAD +#ifdef HAVE_TOUCHSCREEN #ifndef PLASMA_QUIT #define PLASMA_QUIT BUTTON_TOPLEFT #endif @@ -114,7 +114,7 @@ static int plasma_frequency; #ifndef PLASMA_DECREASE_FREQUENCY #define PLASMA_DECREASE_FREQUENCY BUTTON_MIDLEFT #endif -#endif /* HAVE_TOUCHPAD */ +#endif /* HAVE_TOUCHSCREEN */ #ifndef PLASMA_QUIT #define PLASMA_QUIT BUTTON_OFF @@ -147,11 +147,11 @@ static int plasma_frequency; #elif CONFIG_KEYPAD == GIGABEAT_S_PAD #define PLASMA_REGEN_COLORS BUTTON_SELECT #endif -#ifdef HAVE_TOUCHPAD +#ifdef HAVE_TOUCHSCREEN #ifndef PLASMA_REGEN_COLORS #define PLASMA_REGEN_COLORS BUTTON_CENTER #endif -#endif /* HAVE_TOUCHPAD */ +#endif /* HAVE_TOUCHSCREEN */ #endif /* HAVE_LCD_COLOR */ #define WAV_AMP 90 |