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