diff options
author | Yoshihisa Uchida <uchida@rockbox.org> | 2010-03-17 11:42:35 +0000 |
---|---|---|
committer | Yoshihisa Uchida <uchida@rockbox.org> | 2010-03-17 11:42:35 +0000 |
commit | 26d52b913332b9e48e1595c385ca3bbfb37e73c0 (patch) | |
tree | 094444e0cac7b83fe7c6254737df6c879fc4c8df /apps/plugins | |
parent | 7231bdf5e2bb7919c5fcec092f7ca9e505e2b215 (diff) |
Ondavx747/777 fix red.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25235 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r-- | apps/plugins/viewer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/viewer.c b/apps/plugins/viewer.c index a0dd10eed3..b75301c861 100644 --- a/apps/plugins/viewer.c +++ b/apps/plugins/viewer.c @@ -449,12 +449,12 @@ PLUGIN_HEADER #elif CONFIG_KEYPAD == ONDAVX747_PAD #define VIEWER_QUIT BUTTON_POWER #define VIEWER_MENU BUTTON_MENU -#define VIEWER_BOOKMARK BUTTON_RIGHT +#define VIEWER_BOOKMARK (BUTTON_RIGHT|BUTTON_POWER) /* Onda VX777 keys */ #elif CONFIG_KEYPAD == ONDAVX777_PAD #define VIEWER_QUIT BUTTON_POWER -#define VIEWER_BOOKMARK BUTTON_RIGHT +#define VIEWER_BOOKMARK (BUTTON_RIGHT|BUTTON_POWER) /* SAMSUNG YH-820 / YH-920 / YH-925 keys */ #elif CONFIG_KEYPAD == SAMSUNG_YH_PAD |