mirror of
https://github.com/sshlien/abcmidi.git
synced 2025-12-06 06:55:06 +00:00
2021.03.27
This commit is contained in:
@@ -49,7 +49,7 @@ Matching:
|
||||
|
||||
|
||||
|
||||
#define VERSION "1.76 October 19 2020 abcmatch"
|
||||
#define VERSION "1.78 March 27 2021 abcmatch"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
@@ -274,7 +274,7 @@ make_note_representation (int *nnotes, int *nbars, int maxnotes, int maxbars,
|
||||
these bar line indications. Note bar numbering starts
|
||||
from 0. [SS] 2013-11-17
|
||||
*/
|
||||
if (nbars >0 && *nnotes > 0) {
|
||||
if (*nbars >0 && *nnotes > 0) { /* 2021-03-27 */
|
||||
midipitch[*nnotes] = BAR;
|
||||
notelength[*nnotes] = BAR;
|
||||
(*nnotes)++;
|
||||
|
||||
@@ -14127,4 +14127,12 @@ setting v->hasdrums to 1. If it is NULL send an error message that
|
||||
%%MIDI drumon must occur after the first K: header.
|
||||
|
||||
|
||||
March 27 2021
|
||||
abcmatch.c bug fix reported by umbraticus.
|
||||
277:
|
||||
if (nbars >0 ...
|
||||
should be
|
||||
if (*nbars >0 ...
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ midi2abc version 3.47 November 01 2020
|
||||
abc2midi version 4.50 March 10 2021
|
||||
abc2abc version 2.12 October 19 2020
|
||||
yaps version 1.86 December 10 2020
|
||||
abcmatch version 1.77 December 10 2020
|
||||
abcmatch version 1.78 March 27 2021
|
||||
midicopy version 1.37 October 10 2020
|
||||
|
||||
24th January 2002
|
||||
|
||||
Reference in New Issue
Block a user