Commit 03eb7a26 authored by Timo Paulssen's avatar Timo Paulssen Committed by Rémi Denis-Courmont

fix cdda playlists for CDs that have more than 9 titles.

Signed-off-by: default avatarRémi Denis-Courmont <rdenis@simphalempin.com>
(cherry picked from commit f60496a6)
parent 049a5774
......@@ -465,7 +465,7 @@ static int GetTracks( access_t *p_access,
// }
/* Define a "default name" */
if( asprintf( &psz_name, _("Audio CD - Track %i"), (i+1) ) == -1 )
if( asprintf( &psz_name, _("Audio CD - Track %02i"), (i+1) ) == -1 )
psz_name = NULL;
/* Create playlist items */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment