summaryrefslogtreecommitdiff
path: root/apps/screen_access.h
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-05-20 11:34:35 +0000
committerDave Chapman <dave@dchapman.com>2006-05-20 11:34:35 +0000
commit1c9dacd60040b725b95ccf2cd62db3f62b2a8865 (patch)
tree836c0268ac1b21952a3f194ac116b70dccb68438 /apps/screen_access.h
parentd49b112fd8b903b045f6a723e7065460448cb123 (diff)
downloadrockbox-1c9dacd60040b725b95ccf2cd62db3f62b2a8865.tar.gz
rockbox-1c9dacd60040b725b95ccf2cd62db3f62b2a8865.zip
Apply changes to scroll_delay, scroll_speed and scroll_step settings across all screens when changing them in the settings menu. Fixes bug #5348.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9965 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/screen_access.h')
-rw-r--r--apps/screen_access.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/screen_access.h b/apps/screen_access.h
index ae0a962015..c739c6cb1f 100644
--- a/apps/screen_access.h
+++ b/apps/screen_access.h
@@ -185,4 +185,13 @@ extern void screen_access_init(void);
185 */ 185 */
186extern struct screen screens[NB_SCREENS]; 186extern struct screen screens[NB_SCREENS];
187 187
188
189/*
190 * Functions to apply LCD settings across all screens
191 */
192void screen_lcd_scroll_speed(int speed);
193void screen_lcd_scroll_delay(int ms);
194void screen_lcd_scroll_step(int pixels);
195
196
188#endif /*_SCREEN_ACCESS_H_*/ 197#endif /*_SCREEN_ACCESS_H_*/