diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2009-11-04 05:24:30 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2009-11-04 05:24:30 +0000 |
commit | c812614a1dd8453da438a153bf2ec4e62d1fa101 (patch) | |
tree | 0d765f69d8b4e4e76bfc673b446278448a7a73fe /apps/gui/wps.c | |
parent | a7d784b1d5912b68ca9d921961639fe948404811 (diff) |
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/wps.c')
-rw-r--r-- | apps/gui/wps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c index 646f6b4003..4f162f452a 100644 --- a/apps/gui/wps.c +++ b/apps/gui/wps.c @@ -127,7 +127,7 @@ void wps_data_load(enum screen_type screen, const char *buf, bool isfile) #endif /* __PCTOOL__ */ - loaded_ok = buf && skin_data_load(gui_wps[screen].data, buf, isfile); + loaded_ok = buf && skin_data_load(screen, gui_wps[screen].data, buf, isfile); if (!loaded_ok) /* load the hardcoded default */ { @@ -151,7 +151,7 @@ void wps_data_load(enum screen_type screen, const char *buf, bool isfile) "%pb\n", #endif }; - skin_data_load(gui_wps[screen].data, skin_buf[screen], false); + skin_data_load(screen, gui_wps[screen].data, skin_buf[screen], false); } #ifdef HAVE_REMOVE_LCD gui_wps[screen].data->remote_wps = !(screen == SCREEN_MAIN); |