Skip to content

Commit

Permalink
fix: gp5 voltas import
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekirin committed Sep 30, 2024
1 parent ace8209 commit 965203a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/importexport/guitarpro/internal/importgtp-gp5.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,7 @@ bool GuitarPro5::read(IODevice* io)
}
if (barBits & SCORE_REPEAT_END) { // number of repeats
bar.repeatFlags = bar.repeatFlags | mu::engraving::Repeat::END;
bar.repeats = readUInt8();
bar.repeats = readUInt8() + 1;
}
if (barBits & SCORE_MARKER) {
bar.marker = readDelphiString(); // new section?
Expand Down

0 comments on commit 965203a

Please sign in to comment.