Browse Source

Len noticed a bug in binary velocity output

dds
Dean Blackketter 8 years ago
parent
commit
a4814ce934
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/miditones/miditones.c

+ 1
- 1
extras/miditones/miditones.c View File

@@ -949,7 +949,7 @@ int main(int argc,char *argv[]) {
putc (shifted_note, outfile);
outfile_bytecount += 2;
if (velocityoutput) {
putc (shifted_note, outfile);
putc (trk->velocity, outfile);
outfile_bytecount++;
}
}

Loading…
Cancel
Save