mirror of
https://github.com/sshlien/abcmidi.git
synced 2026-02-04 12:48:11 +00:00
2023.01.10
This commit is contained in:
15
store.c
15
store.c
@@ -186,7 +186,7 @@ int main()
|
||||
|
||||
*/
|
||||
|
||||
#define VERSION "4.82 January 06 2023 abc2midi"
|
||||
#define VERSION "4.83 January 10 2023 abc2midi"
|
||||
|
||||
/* enables reading V: indication in header */
|
||||
#define XTEN1 1
|
||||
@@ -4694,6 +4694,13 @@ if (nofnop == 0) {
|
||||
done = 1;
|
||||
};
|
||||
|
||||
/* [SS] 2023-01-10 */
|
||||
if (strcmp(p, "ped(") == 0) {
|
||||
addfeature(PEDAL_ON, 0, 0, 0);
|
||||
done = 1;
|
||||
};
|
||||
|
||||
|
||||
/* [SS] 2011-10-19 [SS] 2018-05-02*/
|
||||
if (strcmp(p, "ped-end") == 0) {
|
||||
addfeature(PEDAL_OFF, 0, 0, 0);
|
||||
@@ -4710,6 +4717,12 @@ if (nofnop == 0) {
|
||||
done = 1;
|
||||
};
|
||||
|
||||
/* [SS] 2023-01-10 */
|
||||
if (strcmp(p, "ped)") == 0) {
|
||||
addfeature(PEDAL_OFF, 0, 0, 0);
|
||||
done = 1;
|
||||
};
|
||||
|
||||
if (strcmp(s, "breath") == 0) {
|
||||
decorators_passback[BREATH] =1;
|
||||
done = 1;
|
||||
|
||||
Reference in New Issue
Block a user