diff options
-rw-r--r-- | apps/plugins/playing_time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/playing_time.c b/apps/plugins/playing_time.c index 47784cf85e..5b07840878 100644 --- a/apps/plugins/playing_time.c +++ b/apps/plugins/playing_time.c | |||
@@ -422,7 +422,7 @@ static int pt_add_track(int i, enum ePT_SUM section, struct playing_time_info *p | |||
422 | struct playlist_track_info pl_track; | 422 | struct playlist_track_info pl_track; |
423 | static unsigned long talked_tick; | 423 | static unsigned long talked_tick; |
424 | int progress_total = pti->remaining_only ? | 424 | int progress_total = pti->remaining_only ? |
425 | pti->nb_tracks - pti->curr_display_index : | 425 | (pti->nb_tracks - pti->curr_display_index) + 1 : |
426 | pti->nb_tracks; | 426 | pti->nb_tracks; |
427 | 427 | ||
428 | rb->splash_progress(pti->counted, progress_total, "%s (%s)", | 428 | rb->splash_progress(pti->counted, progress_total, "%s (%s)", |