summaryrefslogtreecommitdiff
path: root/apps/screen_access.h
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2013-04-03 16:33:23 +0200
committerThomas Martitz <kugel@rockbox.org>2013-12-14 23:11:30 +0100
commit1c5d0b41eebdb4f8c627b1a0e5f7b699f0b08fb8 (patch)
tree3ec44a4e6cfe4bfaab689e765ef3546d8dac730d /apps/screen_access.h
parent47c8d3c14d8fdaf4749ef5e0380fb0c52140b5fb (diff)
downloadrockbox-1c5d0b41eebdb4f8c627b1a0e5f7b699f0b08fb8.tar.gz
rockbox-1c5d0b41eebdb4f8c627b1a0e5f7b699f0b08fb8.zip
scroll_engine: Rename scroll_stop* functions to be more consistent with the lcd api.
Change-Id: I8ada10b96bfb628cca0331689e8b936ae47c7e1c
Diffstat (limited to 'apps/screen_access.h')
-rw-r--r--apps/screen_access.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/screen_access.h b/apps/screen_access.h
index ea05a2294d..448437c637 100644
--- a/apps/screen_access.h
+++ b/apps/screen_access.h
@@ -145,11 +145,11 @@ struct screen
145 int x_offset); 145 int x_offset);
146 void (*scroll_speed)(int speed); 146 void (*scroll_speed)(int speed);
147 void (*scroll_delay)(int ms); 147 void (*scroll_delay)(int ms);
148 void (*stop_scroll)(void);
149 void (*clear_display)(void); 148 void (*clear_display)(void);
150 void (*clear_viewport)(void); 149 void (*clear_viewport)(void);
151 void (*scroll_stop)(const struct viewport* vp); 150 void (*scroll_stop)(void);
152 void (*scroll_stop_line)(const struct viewport* vp, int y); 151 void (*scroll_stop_viewport)(const struct viewport *vp);
152 void (*scroll_stop_viewport_line)(const struct viewport *vp, int line);
153 void (*update)(void); 153 void (*update)(void);
154 void (*update_viewport)(void); 154 void (*update_viewport)(void);
155 void (*backlight_on)(void); 155 void (*backlight_on)(void);