diff options
author | Thomas Martitz <kugel@rockbox.org> | 2010-05-14 13:21:40 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2010-05-14 13:21:40 +0000 |
commit | 0246f0ceb4aeeb29ac7a77fc47f49c67cd7884f2 (patch) | |
tree | 907131a6c240076fe3779c26ee77a206178afa18 /apps/screen_access.h | |
parent | ac43fd367ab4e2b41f2671a047c86e5ace81a33d (diff) | |
download | rockbox-0246f0ceb4aeeb29ac7a77fc47f49c67cd7884f2.tar.gz rockbox-0246f0ceb4aeeb29ac7a77fc47f49c67cd7884f2.tar.bz2 rockbox-0246f0ceb4aeeb29ac7a77fc47f49c67cd7884f2.zip |
Fix remaining reds/yellows.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26024 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/screen_access.h')
-rw-r--r-- | apps/screen_access.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/screen_access.h b/apps/screen_access.h index 2dc95460d5..463ca3fd6a 100644 --- a/apps/screen_access.h +++ b/apps/screen_access.h @@ -121,7 +121,8 @@ struct screen #ifdef HAVE_LCD_CHARCELLS /* no charcell remote LCDs so far */ void (*double_height)(bool on); - void (*putc)(int x, int y, unsigned long ucs); + /* name it putchar, not putc because putc is a c library function */ + void (*putchar)(int x, int y, unsigned long ucs); void (*icon)(int icon, bool enable); unsigned long (*get_locked_pattern)(void); void (*define_pattern)(unsigned long ucs, const char *pattern); |