diff options
author | Jens Arnold <amiconn@rockbox.org> | 2007-04-21 05:32:11 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2007-04-21 05:32:11 +0000 |
commit | c69f032df4753dbd5f848c12f41adeefa74a31a6 (patch) | |
tree | 49123f261ec6baa3e6fc51e8136393783b804187 /firmware/drivers | |
parent | 045d3cc9b54510d89df91312d7a79ba7263052ae (diff) |
Player: Fix the dollar sign for old LCD.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13228 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers')
-rw-r--r-- | firmware/drivers/lcd-charset-player.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/lcd-charset-player.c b/firmware/drivers/lcd-charset-player.c index a2b3d3969f..6b68d47344 100644 --- a/firmware/drivers/lcd-charset-player.c +++ b/firmware/drivers/lcd-charset-player.c @@ -619,7 +619,7 @@ const struct xchar_info xchar_info_oldlcd[] = { { 0x21, 0, 0, 0x25 }, /* ! */ { 0x22, 0, 0, 0x26 }, /* " */ { 0x23, 0, 0, 0x27 }, /* # */ - { 0x24, 0, 0, 0x28 }, /* $ */ + { 0x24, 0, 0, 0x06 }, /* $ */ { 0x25, 0, 0, 0x29 }, /* % */ { 0x26, 0, 0, 0x2a }, /* & */ { 0x27, 0, 0, 0x2b }, /* ' */ |