MidiSheetMusic-Android icon indicating copy to clipboard operation
MidiSheetMusic-Android copied to clipboard

5 beat songs support

Open cameronkkk opened this issue 4 years ago • 0 comments

"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

cameronkkk avatar May 10 '20 13:05 cameronkkk