MidiSheetMusic-Android
MidiSheetMusic-Android copied to clipboard
5 beat songs support
"Take five" and "Mission impossible" are in five beats. I've checked "TimeSignature.java" and remark the code below.
/* Midi File gives wrong time signature sometimes */
if (numerator == 5) {
numerator = 4;
}
but it's not working