Restore the ACTION_REDRAW case as it was before r20661 (with a slight change as suggested by Thomas Martitz). Without it you could get trapped in the WPS on targets with software hold as disabling hold again did not work correctly. Also fix(ed) typos...

git-svn-id: svn://svn.rockbox.org/rockbox/branches/v3_3@21326 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Marianne Arnold 2009-06-18 13:53:41 +00:00
parent 7dd1a76242
commit 35841d38e5

View file

@ -768,8 +768,9 @@ long gui_wps_show(void)
break; break;
#endif /* HAVE_TOUCHSCREEN */ #endif /* HAVE_TOUCHSCREEN */
case ACTION_REDRAW: /* yes are locked, just redraw */ case ACTION_REDRAW: /* yes are locked, just redraw */
/* fall througgh */ wps_state.do_full_update = true;
case ACTION_NONE: /* Timeout, do an partial update */ break;
case ACTION_NONE: /* Timeout, do a partial update */
update = true; update = true;
ffwd_rew(button); /* hopefully fix the ffw/rwd bug */ ffwd_rew(button); /* hopefully fix the ffw/rwd bug */
break; break;