Skip to content

Commit

Permalink
Fix karaoke timing mode after refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
arch1t3cht committed Dec 1, 2023
1 parent d44655f commit 56f888e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ass_karaoke.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,6 @@ std::vector<KaraokeSyllable> ParseKaraokeSyllables(const AssDialogue *line) {
}

void SetKaraokeLine(Karaoke& karaoke, const AssDialogue *line, bool auto_split, bool normalize) {
karaoke.SetLine(ParseKaraokeSyllables(line), normalize, auto_split);
karaoke.SetLine(ParseKaraokeSyllables(line), auto_split, normalize ? line->End : std::optional<int>());
}

0 comments on commit 56f888e

Please sign in to comment.