Skip to content

Commit

Permalink
Mu4 compatibility: Ignore timeTick tag from 4.4 and later
Browse files Browse the repository at this point in the history
  • Loading branch information
Jojo-Schmitz committed Oct 4, 2024
1 parent 3aaafd3 commit 5ebac73
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libmscore/location.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ void Location::read(XmlReader& e)
_graceIndex = e.readInt();
else if (tag == "notes")
_note = e.readInt();
else if (tag == "timeTick") // 4.4+ compat
e.skipCurrentElement();
else
e.unknown();
}
Expand Down

0 comments on commit 5ebac73

Please sign in to comment.