diff options
author | Dave Chapman <dave@dchapman.com> | 2007-12-31 00:04:27 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2007-12-31 00:04:27 +0000 |
commit | e937310f93921365a05612c2fc8a9b714d47efa7 (patch) | |
tree | 0be2a4e3143c9e3a2ac742d60bb91f28b3114d6e /apps | |
parent | afe0677beb44dd71d827bb83ec78d150af19d500 (diff) |
Fix typos in two lcd_remote function names.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15983 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/plugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 5ac4aa7cc2..5b6d7cf872 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -228,8 +228,8 @@ struct plugin_api { void (*lcd_remote_clear_display)(void); void (*lcd_remote_setmargins)(int x, int y); void (*lcd_remote_puts)(int x, int y, const unsigned char *string); - void (*lcd_remote_lcd_puts_scroll)(int x, int y, const unsigned char* string); - void (*lcd_remote_lcd_stop_scroll)(void); + void (*lcd_remote_puts_scroll)(int x, int y, const unsigned char* string); + void (*lcd_remote_stop_scroll)(void); void (*lcd_remote_set_drawmode)(int mode); int (*lcd_remote_get_drawmode)(void); void (*lcd_remote_setfont)(int font); |