summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJerome Kuptz <jeromekuptz@gmail.com>2002-06-25 17:44:05 +0000
committerJerome Kuptz <jeromekuptz@gmail.com>2002-06-25 17:44:05 +0000
commit969dcb78719e3210eeb2e7fa8b37ce422f16f2f2 (patch)
tree47bc0be06d361f88c00cc63afb2bdbbedd4260fc
parent05feebddac030c276caf1ac97ad29efd937df14a (diff)
downloadrockbox-969dcb78719e3210eeb2e7fa8b37ce422f16f2f2.tar.gz
rockbox-969dcb78719e3210eeb2e7fa8b37ce422f16f2f2.zip
moved the declaration int l=0; above the #ifdef so all targets compile
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1190 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/wps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/wps.c b/apps/wps.c
index 43ac28e838..75b68d0d8d 100644
--- a/apps/wps.c
+++ b/apps/wps.c
@@ -79,9 +79,9 @@ static void draw_screen(struct mp3entry* id3)
79 } 79 }
80 case PLAY_DISPLAY_DEFAULT: 80 case PLAY_DISPLAY_DEFAULT:
81 { 81 {
82 int l = 0;
82#ifdef HAVE_LCD_BITMAP 83#ifdef HAVE_LCD_BITMAP
83 char buffer[64]; 84 char buffer[64];
84 int l = 0;
85 85
86 lcd_puts(0, l++, id3->title?id3->title:""); 86 lcd_puts(0, l++, id3->title?id3->title:"");
87 lcd_puts(0, l++, id3->album?id3->album:""); 87 lcd_puts(0, l++, id3->album?id3->album:"");