1
0
Fork 0
forked from len0rd/rockbox

Quick bugfix for skip-to-beginning behavior

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9599 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Brandon Low 2006-04-11 01:41:40 +00:00
parent b7eef891f8
commit 574c5242e0

View file

@ -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;