summaryrefslogtreecommitdiff
path: root/apps/gui/wps.c
diff options
context:
space:
mode:
authorTorne Wuff <torne@wolfpuppy.org.uk>2010-03-28 23:27:49 +0000
committerTorne Wuff <torne@wolfpuppy.org.uk>2010-03-28 23:27:49 +0000
commit05ace8e095f3de6332560b364a158321867c7bba (patch)
tree8a4b7e12ee6f716cf5a32765c620c65549451e52 /apps/gui/wps.c
parent8132852bf2ed6ec9d6cc5fbcc5327b6f683dd708 (diff)
downloadrockbox-05ace8e095f3de6332560b364a158321867c7bba.tar.gz
rockbox-05ace8e095f3de6332560b364a158321867c7bba.zip
Fix "bookmark on stop: ask" when idle poweroff triggers.
Previously, the prompt would come up during poweroff, and then if the user did not respond, the shutdown timeout would be hit and a hard poweroff would happen, which is bad. Now it just assumes you don't want a bookmark. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25376 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/wps.c')
-rw-r--r--apps/gui/wps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c
index e2a7dcb961..b6a42769fe 100644
--- a/apps/gui/wps.c
+++ b/apps/gui/wps.c
@@ -1258,7 +1258,7 @@ long gui_wps_show(void)
1258 fade(false, true); 1258 fade(false, true);
1259 1259
1260 if (bookmark) 1260 if (bookmark)
1261 bookmark_autobookmark(); 1261 bookmark_autobookmark(true);
1262 audio_stop(); 1262 audio_stop();
1263#ifdef AB_REPEAT_ENABLE 1263#ifdef AB_REPEAT_ENABLE
1264 ab_reset_markers(); 1264 ab_reset_markers();