diff options
| author | Felix Arends <edx@rockbox.org> | 2002-06-21 12:30:08 +0000 |
|---|---|---|
| committer | Felix Arends <edx@rockbox.org> | 2002-06-21 12:30:08 +0000 |
| commit | d3f373f7cb538eaf9b4f24cb0bf0aa3a6797fc54 (patch) | |
| tree | a1e615a2d3e8435a9ccd9febef82b63dc233616b | |
| parent | fe98041a8126580485592208cf7fceff80cb3fd4 (diff) | |
| download | rockbox-d3f373f7cb538eaf9b4f24cb0bf0aa3a6797fc54.zip rockbox-d3f373f7cb538eaf9b4f24cb0bf0aa3a6797fc54.tar.gz rockbox-d3f373f7cb538eaf9b4f24cb0bf0aa3a6797fc54.tar.bz2 rockbox-d3f373f7cb538eaf9b4f24cb0bf0aa3a6797fc54.tar.xz | |
nx was undefined for the first execution of the while statement
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1131 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/drivers/lcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/lcd.c b/firmware/drivers/lcd.c index c470021..2492534 100644 --- a/firmware/drivers/lcd.c +++ b/firmware/drivers/lcd.c @@ -527,7 +527,7 @@ void lcd_getstringsize(char *str, unsigned int font, int *w, int *h) void lcd_putspropxy(int x, int y, char *str, int thisfont) { int ch; - int nx; + int nx = char_dw_8x8_prop[*str][8] >> 4; int ny=8; unsigned char *src; int lcd_x = x; |