Skip to content
Snippets Groups Projects
Commit dd874d56 authored by deuce's avatar deuce
Browse files

If the music introducer is CSI M, support all legal characters after the M

parent e62192df
No related branches found
No related tags found
No related merge requests found
......@@ -197,8 +197,28 @@ void play_music(void)
p=cterm.musicbuf;
if(cterm.music==1) {
if(*p=='B' || *p=='b' || *p=='F' || *p=='f')
p++;
switch(toupper(*p)) {
case 'F':
cterm.musicfore=TRUE;
p++;
break;
case 'B':
cterm.musicfore=FALSE;
p++;
break;
case 'N':
cterm.noteshape=CTERM_MUSIC_NORMAL;
p++;
break;
case 'L':
cterm.noteshape=CTERM_MUSIC_LEGATO;
p++;
break;
case 'S':
cterm.noteshape=CTERM_MUSIC_STACATTO;
p++;
break;
}
}
for(;*p;p++) {
notenum=0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment