diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2009-01-01 05:04:34 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2009-01-01 05:04:34 +0000 |
| commit | 67286783853120d3a4615aa7da35bdbd4740c978 (patch) | |
| tree | 6ac947026c93e9f6309eaa72e3c7d08b99dc5f93 | |
| parent | 9e3844db07e684365837ca5d5f9bcd4a2cb993a6 (diff) | |
| download | rockbox-67286783853120d3a4615aa7da35bdbd4740c978.zip rockbox-67286783853120d3a4615aa7da35bdbd4740c978.tar.gz rockbox-67286783853120d3a4615aa7da35bdbd4740c978.tar.bz2 rockbox-67286783853120d3a4615aa7da35bdbd4740c978.tar.xz | |
fis FS#9739 - yesterdays statusbar commits broke the WPS disk spindown handling
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19630 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/gui/gwps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/gwps.c b/apps/gui/gwps.c index a9ad578..44b8514 100644 --- a/apps/gui/gwps.c +++ b/apps/gui/gwps.c @@ -700,7 +700,7 @@ long gui_wps_show(void) return GO_TO_PREVIOUS; } - if ( button ) + if ( !IS_SYSEVENT(button) ) storage_spin(); } return GO_TO_ROOT; /* unreachable - just to reduce compiler warnings */ |