diff options
| author | Nicolas Pennequin <nicolas.pennequin@free.fr> | 2007-11-19 16:37:52 +0000 |
|---|---|---|
| committer | Nicolas Pennequin <nicolas.pennequin@free.fr> | 2007-11-19 16:37:52 +0000 |
| commit | d3b8245ca87177af9454e823acb6f57b47e196ca (patch) | |
| tree | ebc7b708cb1b7e69e99d2969a1ec24111c35f1e9 /apps/debug_menu.c | |
| parent | 3947b0c6328e446fd70641885a7035614cfc90e5 (diff) | |
| download | rockbox-d3b8245ca87177af9454e823acb6f57b47e196ca.zip rockbox-d3b8245ca87177af9454e823acb6f57b47e196ca.tar.gz rockbox-d3b8245ca87177af9454e823acb6f57b47e196ca.tar.bz2 rockbox-d3b8245ca87177af9454e823acb6f57b47e196ca.tar.xz | |
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
Diffstat (limited to 'apps/debug_menu.c')
| -rw-r--r-- | apps/debug_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index f343ce6..e3f576d 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -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); |