diff options
author | Christian Soffke <christian.soffke@gmail.com> | 2024-10-18 06:55:15 +0200 |
---|---|---|
committer | Christian Soffke <christian.soffke@gmail.com> | 2024-10-18 06:55:15 +0200 |
commit | 8c1c8597ac3c0b43c654ed2fcdfc7320bf6eeb32 (patch) | |
tree | e93a10125a72ecb109a74fed21d547b4ffad96e9 | |
parent | ac46684d7fe4a7b97e5553a3e8507e5cc65049a4 (diff) | |
download | rockbox-8c1c8597ac3c0b43c654ed2fcdfc7320bf6eeb32.tar.gz rockbox-8c1c8597ac3c0b43c654ed2fcdfc7320bf6eeb32.zip |
plugins: playing time: OBOE
Change-Id: I1c6b73e06ac615db6e764aa54f042ec4e2dee3a2
-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)", |