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 /apps/screen_access.c | |
| 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 'apps/screen_access.c')
| -rw-r--r-- | apps/screen_access.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/screen_access.c b/apps/screen_access.c index 5b2b472..19ab776 100644 --- a/apps/screen_access.c +++ b/apps/screen_access.c @@ -182,6 +182,7 @@ struct screen screens[NB_SCREENS] = .putsxy=&lcd_putsxy, .puts=&lcd_puts, + .putsf=&lcd_putsf, .puts_offset=&lcd_puts_offset, .puts_scroll=&lcd_puts_scroll, .puts_scroll_offset=&lcd_puts_scroll_offset, @@ -267,6 +268,7 @@ struct screen screens[NB_SCREENS] = #endif /* 0 */ .putsxy=&lcd_remote_putsxy, .puts=&lcd_remote_puts, + .putsf=&lcd_remote_putsf, .puts_offset=&lcd_remote_puts_offset, .puts_scroll=&lcd_remote_puts_scroll, .puts_scroll_offset=&lcd_remote_puts_scroll_offset, |