Skip to content

Commit

Permalink
fix: gp5 volatas import (#24979)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekirin committed Sep 30, 2024
1 parent c8e2947 commit 877d33e
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 @@ -920,7 +920,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 877d33e

Please sign in to comment.