mirror of
https://github.com/sshlien/abcmidi.git
synced 2025-12-06 06:55:06 +00:00
2023.01.06
This commit is contained in:
10
parseabc.c
10
parseabc.c
@@ -1102,8 +1102,14 @@ if (**s != '=')
|
||||
|
||||
*gottranspose = 1;
|
||||
|
||||
if (fileprogram == ABC2MIDI) *transpose = transp_sound;
|
||||
if (fileprogram == YAPS) *transpose = transp_score;
|
||||
if (fileprogram == ABC2MIDI) {
|
||||
/* [SS] 2023.01.06 */
|
||||
if (casecmp(word,"score") != 0) *transpose = transp_sound;
|
||||
}
|
||||
if (fileprogram == YAPS) {
|
||||
/* [SS] 2023.01.06 */
|
||||
if (casecmp(word,"sound") != 0) *transpose = transp_score;
|
||||
}
|
||||
return(1);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user