diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-03-02 07:56:58 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-03-02 07:56:58 +0000 |
commit | 4467782864b0a00aa10f07f66b859961297a8d31 (patch) | |
tree | 2edcef9e073f22f92d04a75a88241a40224e23d4 /apps | |
parent | ec6dc8b6f1f9865be30ec4afdeac33601a61b4f6 (diff) | |
download | rockbox-4467782864b0a00aa10f07f66b859961297a8d31.tar.gz rockbox-4467782864b0a00aa10f07f66b859961297a8d31.zip |
Patch #881188 by Craigh Sather, fixes battery display updates in WPS
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4326 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/wps-display.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/wps-display.c b/apps/wps-display.c index a24cae9717..ded6c7cdcf 100644 --- a/apps/wps-display.c +++ b/apps/wps-display.c @@ -543,6 +543,7 @@ static char* get_tag(struct mp3entry* id3, break; case 'b': /* battery info */ + *flags |= WPS_REFRESH_DYNAMIC; switch (tag[1]) { case 'l': /* battery level */ snprintf(buf, buf_size, "%d%%", battery_level()); |