1
0
Fork 0
forked from len0rd/rockbox

Unpause after seeking on archos.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12525 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2007-02-28 23:44:09 +00:00
parent b49602e7a9
commit 35ad10be59

View file

@ -181,10 +181,12 @@ static bool seek(unsigned long pos)
{
#if (CONFIG_CODEC == SWCODEC)
audio_pre_ff_rewind();
audio_ff_rewind(pos);
#else
audio_pause();
#endif
audio_ff_rewind(pos);
audio_resume();
#endif
return true;
}
}