summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-03-26 07:52:13 +0000
committerJens Arnold <amiconn@rockbox.org>2007-03-26 07:52:13 +0000
commitad4e3d665734b14a28f1ba5fa874663772dab3e7 (patch)
treebff44652495f1319a4d11ed63b3d4e90cb11197f /apps/gui
parent165f62d0cd771660e4b8d2ba7475e14d0d6f2e9f (diff)
downloadrockbox-ad4e3d665734b14a28f1ba5fa874663772dab3e7.tar.gz
rockbox-ad4e3d665734b14a28f1ba5fa874663772dab3e7.zip
First step of charcell LCD code rework: * Make it fully unicode aware so that adding non-ISO8859-1 scripts becomes possible (limited by the LCD capabilities of course). * Make the API more similar to the bitmap LCD code's API. * Moved hardware dependent parts to target tree. * Simplified code. * Jumpscroll temporarily non-functional.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12916 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/icon.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/icon.h b/apps/gui/icon.h
index e21db7a133..9ceda9e933 100644
--- a/apps/gui/icon.h
+++ b/apps/gui/icon.h
@@ -26,13 +26,13 @@
26typedef const unsigned char * ICON; 26typedef const unsigned char * ICON;
27#define NOICON NULL 27#define NOICON NULL
28#else 28#else
29typedef short ICON; 29typedef long ICON;
30#define NOICON -1 30#define NOICON -1
31#endif 31#endif
32 32
33#define Icon_NOICON -1 33#define Icon_NOICON -1
34 34
35#define CURSOR_CHAR 0x92 35#define CURSOR_CHAR 0xe10c
36#define CURSOR_WIDTH 6 36#define CURSOR_WIDTH 6
37#define CURSOR_HEIGHT 8 37#define CURSOR_HEIGHT 8
38 38