diff options
| author | Dave Chapman <dave@dchapman.com> | 2006-05-20 11:34:35 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2006-05-20 11:34:35 +0000 |
| commit | 1c9dacd60040b725b95ccf2cd62db3f62b2a8865 (patch) | |
| tree | 836c0268ac1b21952a3f194ac116b70dccb68438 /apps/screen_access.h | |
| parent | d49b112fd8b903b045f6a723e7065460448cb123 (diff) | |
| download | rockbox-1c9dacd60040b725b95ccf2cd62db3f62b2a8865.zip rockbox-1c9dacd60040b725b95ccf2cd62db3f62b2a8865.tar.gz rockbox-1c9dacd60040b725b95ccf2cd62db3f62b2a8865.tar.bz2 rockbox-1c9dacd60040b725b95ccf2cd62db3f62b2a8865.tar.xz | |
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.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/screen_access.h b/apps/screen_access.h index ae0a962..c739c6c 100644 --- a/apps/screen_access.h +++ b/apps/screen_access.h @@ -185,4 +185,13 @@ extern void screen_access_init(void); */ extern struct screen screens[NB_SCREENS]; + +/* + * Functions to apply LCD settings across all screens + */ +void screen_lcd_scroll_speed(int speed); +void screen_lcd_scroll_delay(int ms); +void screen_lcd_scroll_step(int pixels); + + #endif /*_SCREEN_ACCESS_H_*/ |