ditek / MidiSheetMusic-Android

Play and visualize MIDI music files
GNU General Public License v3.0
130 stars 51 forks source link

5 beat songs support #17

Open cameronkkk opened 4 years ago

cameronkkk commented 4 years ago

"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