Skip to content

Commit

Permalink
fix import of 1.3 time common and cut timesig
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Jun 24, 2013
1 parent 2faaa67 commit b62bf5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/timesig.cpp
Expand Up @@ -186,7 +186,7 @@ void TimeSig::read(XmlReader& e)
}
else if (tag == "subtype") {
TimeSigType i = TimeSigType(e.readInt());
if (score()->mscVersion() < 122) {
if (score()->mscVersion() < 122 && score()->mscVersion() > 114) {
setSig(Fraction(
((i >> 24) & 0x3f)
+ ((i >> 18) & 0x3f)
Expand Down

0 comments on commit b62bf5a

Please sign in to comment.