forked from len0rd/rockbox
Second part of FS#8104 by Bertrik Sikken: Simplification of audio_track_count, audio_have_tracks and audio_have_free_tracks. This hopefully won't affect anything, but the semantics of the functions have changed slightly.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15693 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3947b0c632
commit
d3b8245ca8
2 changed files with 9 additions and 21 deletions
|
@ -344,7 +344,7 @@ static bool dbg_buffering_thread(void)
|
|||
snprintf(buf, sizeof(buf), "data_rem: %ld", (long)d.data_rem);
|
||||
lcd_puts(0, line++, buf);
|
||||
|
||||
snprintf(buf, sizeof(buf), "track count: %2d", audio_track_count()-1);
|
||||
snprintf(buf, sizeof(buf), "track count: %2d", audio_track_count());
|
||||
lcd_puts(0, line++, buf);
|
||||
|
||||
snprintf(buf, sizeof(buf), "handle count: %d", (int)d.num_handles);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue