forked from len0rd/rockbox
Buffer refilling problem fixed.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6634 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c98ea5a6de
commit
3ca1645496
1 changed files with 1 additions and 1 deletions
|
|
@ -813,7 +813,7 @@ void audio_check_buffer(void)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Start buffer filling as necessary. */
|
/* Start buffer filling as necessary. */
|
||||||
if (codecbufused > AUDIO_WATERMARK || !interrupt)
|
if (codecbufused > AUDIO_WATERMARK || interrupt || !playing)
|
||||||
return ;
|
return ;
|
||||||
|
|
||||||
filling = true;
|
filling = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue