From 574c5242e0de89c288b4cbb39da8ed05616b6445 Mon Sep 17 00:00:00 2001 From: Brandon Low Date: Tue, 11 Apr 2006 01:41:40 +0000 Subject: [PATCH] Quick bugfix for skip-to-beginning behavior git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9599 a1c6a512-1295-4272-9138-f99709370657 --- apps/gui/gwps.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/gui/gwps.c b/apps/gui/gwps.c index db9296183c..707615c269 100644 --- a/apps/gui/gwps.c +++ b/apps/gui/gwps.c @@ -435,12 +435,18 @@ long gui_wps_show(void) } else { if (!wps_state.paused) +#if (CONFIG_CODEC == SWCODEC) + audio_pre_ff_rewind(); +#else audio_pause(); +#endif audio_ff_rewind(0); +#if (CONFIG_CODEC != SWCODEC) if (!wps_state.paused) audio_resume(); +#endif } break;