Skip to content

Commit

Permalink
write linebreaks in lyrics
Browse files Browse the repository at this point in the history
  • Loading branch information
odrling committed Aug 10, 2024
1 parent 6a112f3 commit 852f653
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions libdakara_check.c
Original file line number Diff line number Diff line change
Expand Up @@ -296,11 +296,10 @@ void dakara_check_subtitle_events(ASS_Track *track, dakara_check_sub_results *re
switch (line[read_head]) {
case 'n':
case 'N':
// ignore
line[write_head++] = '\n';
break;
default:
line[write_head] = line[read_head];
write_head++;
line[write_head++] = line[read_head];
}
} else {
switch (line[read_head]) {
Expand Down

0 comments on commit 852f653

Please sign in to comment.