diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2009-04-25 19:23:40 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2009-04-25 19:23:40 +0000 |
| commit | 29cf2e148b13bef9520952f8ea87592615840eaf (patch) | |
| tree | 6dee7b37b245b513f750c34900dacdc69d2b0627 | |
| parent | 7a4145c47a6d4608a4e443cb2ac23f05c0240d7f (diff) | |
| download | rockbox-29cf2e148b13bef9520952f8ea87592615840eaf.zip rockbox-29cf2e148b13bef9520952f8ea87592615840eaf.tar.gz rockbox-29cf2e148b13bef9520952f8ea87592615840eaf.tar.bz2 rockbox-29cf2e148b13bef9520952f8ea87592615840eaf.tar.xz | |
Setting do_full_update isn't actually needed, since the track changed event will set it if needed.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20786 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/gui/gwps.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/gui/gwps.c b/apps/gui/gwps.c index 26b531e..cec0653 100644 --- a/apps/gui/gwps.c +++ b/apps/gui/gwps.c @@ -256,12 +256,10 @@ static void gwps_fix_statusbars(void) /* * If the user is unable to see the wps, because the display is deactivated, * we surpress updates until the wps gets actived again (the lcd driver will - * call this hook) + * call this hook to issue an instant update) * */ static void wps_lcd_activation_hook(void) { - /* issue an update */ - wps_state.do_full_update = true; /* force timeout in wps main loop, so that the update is instantly */ queue_post(&button_queue, BUTTON_NONE, 0); } |