diff options
| author | Magnus Holmgren <magnushol@gmail.com> | 2005-07-24 16:03:44 +0000 |
|---|---|---|
| committer | Magnus Holmgren <magnushol@gmail.com> | 2005-07-24 16:03:44 +0000 |
| commit | 8189be16550aac175dcd1bb2ee2bff943c6df4b4 (patch) | |
| tree | 646d7f34124a831640795fe9cef10252c4805ae9 /apps | |
| parent | 4a53787992b396d28c001f7567bc91644fae861c (diff) | |
| download | rockbox-8189be16550aac175dcd1bb2ee2bff943c6df4b4.zip rockbox-8189be16550aac175dcd1bb2ee2bff943c6df4b4.tar.gz rockbox-8189be16550aac175dcd1bb2ee2bff943c6df4b4.tar.bz2 rockbox-8189be16550aac175dcd1bb2ee2bff943c6df4b4.tar.xz | |
Calculate the with of the right string.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7235 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/screens.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/screens.c b/apps/screens.c index 440f9e1..86d11a7 100644 --- a/apps/screens.c +++ b/apps/screens.c @@ -590,7 +590,7 @@ bool quick_screen(int context, int button) break; } - lcd_getstringsize(str(LANG_SHUFFLE),&w,&h); + lcd_getstringsize(str(LANG_REPEAT),&w,&h); lcd_putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h*2, str(LANG_REPEAT)); lcd_putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h, str(LANG_F2_MODE)); lcd_putsxy(LCD_WIDTH - w, LCD_HEIGHT/2, ptr); |