Conflicts:
	inc/jasmid/replayer.js
master
Michael Deal 2013-02-19 12:22:28 -08:00
commit b8e0cca45e
1 changed files with 9 additions and 9 deletions

View File

@ -70,8 +70,8 @@ function Replayer(midiFile, timeWarp, eventProcessor) {
//
function processEvents() {
function processNext() {
// respect Tempo Event - Mani
if (midiEvent.event.type == "meta" && midiEvent.event.subtype == "setTempo" ) {
if ( midiEvent.event.type == "meta" && midiEvent.event.subtype == "setTempo" ) {
// tempo change events can occur anywhere in the middle and affect events that follow
beatsPerMinute = 60000000 / midiEvent.event.microsecondsPerBeat;
}
if (midiEvent.ticksToEvent > 0) {