summaryrefslogtreecommitdiff
path: root/apps/gui/statusbar-skinned.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2009-11-04 05:24:30 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2009-11-04 05:24:30 +0000
commitc812614a1dd8453da438a153bf2ec4e62d1fa101 (patch)
tree0d765f69d8b4e4e76bfc673b446278448a7a73fe /apps/gui/statusbar-skinned.c
parenta7d784b1d5912b68ca9d921961639fe948404811 (diff)
downloadrockbox-c812614a1dd8453da438a153bf2ec4e62d1fa101.tar.gz
rockbox-c812614a1dd8453da438a153bf2ec4e62d1fa101.zip
Fix the WPS to work properly with the statusbar for the previous change.. Side effect is it fixes FS#10721 where %pb didnt work
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23508 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/statusbar-skinned.c')
-rw-r--r--apps/gui/statusbar-skinned.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/statusbar-skinned.c b/apps/gui/statusbar-skinned.c
index ba46253f5d..11805c83a8 100644
--- a/apps/gui/statusbar-skinned.c
+++ b/apps/gui/statusbar-skinned.c
@@ -51,7 +51,7 @@ void sb_skin_data_load(enum screen_type screen, const char *buf, bool isfile)
51 struct wps_data *data = sb_skin[screen].data; 51 struct wps_data *data = sb_skin[screen].data;
52 52
53 int success; 53 int success;
54 success = buf && skin_data_load(data, buf, isfile); 54 success = buf && skin_data_load(screen, data, buf, isfile);
55 55
56 if (success) 56 if (success)
57 { /* hide the sb's default viewport because it has nasty effect with stuff 57 { /* hide the sb's default viewport because it has nasty effect with stuff