diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2013-12-24 00:52:18 +0100 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2014-01-07 11:36:00 +0100 |
| commit | 76476751d7500da813be85829ad740962b8cee79 (patch) | |
| tree | feb0212a9614d40375a97d56f6c55a7439f6b78f | |
| parent | acee675a5e67635e812a2d325a0f450d3409d53a (diff) | |
| download | rockbox-76476751d7500da813be85829ad740962b8cee79.zip rockbox-76476751d7500da813be85829ad740962b8cee79.tar.gz rockbox-76476751d7500da813be85829ad740962b8cee79.tar.bz2 rockbox-76476751d7500da813be85829ad740962b8cee79.tar.xz | |
lcd-charcell: Correct get_icon_width() stub, everything is 1 char wide.
Change-Id: I2a76c306be8f11827cb8d1f12641d710f49274aa
| -rw-r--r-- | apps/gui/icon.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/icon.h b/apps/gui/icon.h index ca7f048..9304ad9 100644 --- a/apps/gui/icon.h +++ b/apps/gui/icon.h @@ -108,7 +108,7 @@ void icons_init(void); #ifdef HAVE_LCD_CHARCELLS # define CURSOR_CHAR 0xe10c -# define get_icon_width(a) 6 +# define get_icon_width(a) 1 # define get_icon_height(a) 1 /* needs to be verified */ #else int get_icon_width(enum screen_type screen_type); |