LyricsParser: Fix bug for lrc files with variable timestamp
This commit is contained in:
parent
3a3b3fe59b
commit
ed46022374
|
@ -90,7 +90,7 @@ static gint64 get_lrc_line_timestamp(const char *lyrics_line, size_t timestamp_l
|
|||
(lyrics_line[5] - '0');
|
||||
|
||||
// Millseconds
|
||||
gint64 lyric_micro;
|
||||
gint64 lyric_micro = 0;
|
||||
switch (timestamp_length)
|
||||
{
|
||||
case 9:
|
||||
|
|
Loading…
Reference in New Issue