diff options
| author | Brandon Low <lostlogic@rockbox.org> | 2006-04-11 17:20:55 +0000 |
|---|---|---|
| committer | Brandon Low <lostlogic@rockbox.org> | 2006-04-11 17:20:55 +0000 |
| commit | 8529414c7f96c6ed468085f57eb5059bee36d6ff (patch) | |
| tree | bb7481512407607a1165d05c250aebc3402fa750 | |
| parent | 8966c018fa51080055555ed36a4c313e2fa72689 (diff) | |
| download | rockbox-8529414c7f96c6ed468085f57eb5059bee36d6ff.zip rockbox-8529414c7f96c6ed468085f57eb5059bee36d6ff.tar.gz rockbox-8529414c7f96c6ed468085f57eb5059bee36d6ff.tar.bz2 rockbox-8529414c7f96c6ed468085f57eb5059bee36d6ff.tar.xz | |
Clarify a comment
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9616 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/playback.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/playback.c b/apps/playback.c index 34e9f1f..f202626 100644 --- a/apps/playback.c +++ b/apps/playback.c @@ -1112,7 +1112,8 @@ static void audio_read_file(void) track_widx = 0; } tracks[track_widx].filesize = 0; - /* If this is an initial fill, stop after one track is complete */ + /* If we're short filling, and have at least twice the watermark + * of data, stop filling after this track */ if (filling_short && filebufused > conf_watermark * 2) fill_bytesleft = 0; } else { |