summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/wps.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/wps.c b/apps/wps.c
index 7b0cf5d60f..5228726b0f 100644
--- a/apps/wps.c
+++ b/apps/wps.c
@@ -95,7 +95,11 @@ static void draw_screen(struct mp3entry* id3)
95 lcd_puts(0, l++, id3->album?id3->album:""); 95 lcd_puts(0, l++, id3->album?id3->album:"");
96 lcd_puts(0, l++, id3->artist?id3->artist:""); 96 lcd_puts(0, l++, id3->artist?id3->artist:"");
97 97
98 snprintf(buffer,sizeof(buffer), "%d kbits", id3->bitrate); 98 if(id3->bitrate == VARIABLE_BIT_RATE)
99 snprintf(buffer, sizeof(buffer), "Variable Bit Rate");
100 else
101 snprintf(buffer, sizeof(buffer), "%d kbits", id3->bitrate);
102
99 103
100 lcd_puts(0, l++, buffer); 104 lcd_puts(0, l++, buffer);
101 105