summaryrefslogtreecommitdiff
path: root/firmware/export/button.h
diff options
context:
space:
mode:
authorTomer Shalev <shalev.tomer@gmail.com>2009-10-05 17:17:30 +0000
committerTomer Shalev <shalev.tomer@gmail.com>2009-10-05 17:17:30 +0000
commitf7bd7252e14a151217f1a9b7eee6200eb23586a8 (patch)
tree2a676f3f9dc9248bfb8a9c6b1a39b4197471708c /firmware/export/button.h
parente04acd8c3e8cbcec4eab0ffe046ec0935a15ab85 (diff)
downloadrockbox-f7bd7252e14a151217f1a9b7eee6200eb23586a8.tar.gz
rockbox-f7bd7252e14a151217f1a9b7eee6200eb23586a8.zip
Invert buttons in RTL mode
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22961 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/button.h')
-rw-r--r--firmware/export/button.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/firmware/export/button.h b/firmware/export/button.h
index 3aac1af9d6..2e75c573df 100644
--- a/firmware/export/button.h
+++ b/firmware/export/button.h
@@ -42,7 +42,10 @@ int button_status_wdata(int *pdata);
42#endif 42#endif
43void button_clear_queue(void); 43void button_clear_queue(void);
44#ifdef HAVE_LCD_BITMAP 44#ifdef HAVE_LCD_BITMAP
45void button_set_flip(bool flip); /* turn 180 degrees */ 45void button_set_flip_vertically(bool flip); /* turn 180 degrees */
46#ifndef BOOTLOADER
47int button_flip_horizontally(int button); /* for RTL mode */
48#endif
46#endif 49#endif
47#ifdef HAVE_BACKLIGHT 50#ifdef HAVE_BACKLIGHT
48void set_backlight_filter_keypress(bool value); 51void set_backlight_filter_keypress(bool value);