diff options
| author | Nils Wallménius <nils@rockbox.org> | 2009-10-17 18:02:48 +0000 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2009-10-17 18:02:48 +0000 |
| commit | f34a841b0cc5d1a605375209e1b013b388f741bc (patch) | |
| tree | 90c780494fa42ffe34e3504d6fe3dc026a91d457 /firmware/export | |
| parent | 5ca76ab9c4af0759f1bcf75ce24c47ccd38fc962 (diff) | |
| download | rockbox-f34a841b0cc5d1a605375209e1b013b388f741bc.zip rockbox-f34a841b0cc5d1a605375209e1b013b388f741bc.tar.gz rockbox-f34a841b0cc5d1a605375209e1b013b388f741bc.tar.bz2 rockbox-f34a841b0cc5d1a605375209e1b013b388f741bc.tar.xz | |
Revise r23225 a bit, removing the debug_printf function and implementing more generic lcd_(remote)_putsf function(s) instead and use those in more places
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23233 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/lcd-remote.h | 1 | ||||
| -rw-r--r-- | firmware/export/lcd.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/firmware/export/lcd-remote.h b/firmware/export/lcd-remote.h index 01df5a7..62e82ca 100644 --- a/firmware/export/lcd-remote.h +++ b/firmware/export/lcd-remote.h @@ -121,6 +121,7 @@ extern void lcd_remote_set_viewport(struct viewport* vp); extern void lcd_remote_clear_display(void); extern void lcd_remote_clear_viewport(void); extern void lcd_remote_puts(int x, int y, const unsigned char *str); +extern void lcd_remote_putsf(int x, int y, const unsigned char *fmt, ...); extern void lcd_remote_puts_style(int x, int y, const unsigned char *str, int style); extern void lcd_remote_puts_offset(int x, int y, const unsigned char *str, diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h index bf1680f..91217ff 100644 --- a/firmware/export/lcd.h +++ b/firmware/export/lcd.h @@ -191,6 +191,7 @@ extern void lcd_clear_viewport(void); extern void lcd_clear_display(void); extern void lcd_putsxy(int x, int y, const unsigned char *string); extern void lcd_puts(int x, int y, const unsigned char *string); +extern void lcd_putsf(int x, int y, const unsigned char *fmt, ...); extern void lcd_puts_style(int x, int y, const unsigned char *string, int style); extern void lcd_puts_offset(int x, int y, const unsigned char *str, int offset); extern void lcd_puts_scroll_offset(int x, int y, const unsigned char *string, |