diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-03-22 08:10:57 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-03-22 08:10:57 +0000 |
commit | 2848983d7e452af234759f64b612131f1bb97cc8 (patch) | |
tree | b702ae62980e1017e599650ac76ac6366aabffcb | |
parent | 34fa6a4ba4e54a76b097ee333acf60fffd167051 (diff) | |
download | rockbox-2848983d7e452af234759f64b612131f1bb97cc8.tar.gz rockbox-2848983d7e452af234759f64b612131f1bb97cc8.zip |
Fixed bad handling of remote control STOP on Player models
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4429 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/wps.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/wps.c b/apps/wps.c index c9313f8f96..104c56250c 100644 --- a/apps/wps.c +++ b/apps/wps.c @@ -941,9 +941,6 @@ int wps_show(void) #endif /* stop and exit wps */ -#ifdef BUTTON_RC_STOP - case BUTTON_RC_STOP: -#endif #ifdef BUTTON_OFF case BUTTON_OFF | BUTTON_REL: #else @@ -951,6 +948,9 @@ int wps_show(void) if ( lastbutton != BUTTON_STOP ) break; #endif +#ifdef BUTTON_RC_STOP + case BUTTON_RC_STOP: +#endif exit = true; break; |