diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2009-10-16 20:30:09 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2009-10-16 20:30:09 +0000 |
| commit | 8d032ae136035563f262dabf9b839b90db25de29 (patch) | |
| tree | a044aeabdd553bc7fb58e0a2a1434767204c6d32 /apps/gui/wps.c | |
| parent | 27ece8c366b89fab05a47c342edc3edc18a6c5e3 (diff) | |
| download | rockbox-8d032ae136035563f262dabf9b839b90db25de29.zip rockbox-8d032ae136035563f262dabf9b839b90db25de29.tar.gz rockbox-8d032ae136035563f262dabf9b839b90db25de29.tar.bz2 rockbox-8d032ae136035563f262dabf9b839b90db25de29.tar.xz | |
initial custom statusbar commit
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23212 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/wps.c')
| -rw-r--r-- | apps/gui/wps.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c index 342ebde..3ea5cf9 100644 --- a/apps/gui/wps.c +++ b/apps/gui/wps.c @@ -131,6 +131,7 @@ void wps_data_load(enum screen_type screen, const char *buf, bool isfile) loaded_ok = buf && skin_data_load(gui_wps[screen].data, &screens[screen], buf, isfile); + DEBUGF("%s >> wps loading\n", __func__); if (!loaded_ok) /* load the hardcoded default */ { char *skin_buf[NB_SCREENS] = { @@ -1291,6 +1292,7 @@ void gui_sync_wps_init(void) #ifdef HAVE_REMOTE_LCD wps_datas[i].remote_wps = (i == SCREEN_REMOTE); #endif + wps_datas[i].debug = false; gui_wps[i].data = &wps_datas[i]; gui_wps[i].display = &screens[i]; /* Currently no seperate wps_state needed/possible |