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

If xptone_open() failes, use xpbeep()

Currently there's not much difference between the two anyways.
parent ac5ca2ff
No related branches found
No related tags found
No related merge requests found
......@@ -198,8 +198,7 @@ void playnote_thread(void *args)
}
else
listSemWait(&notes);
xptone_open();
device_open=TRUE;
device_open=xptone_open();
note=listShiftNode(&notes);
if(note==NULL)
break;
......@@ -221,8 +220,12 @@ void playnote_thread(void *args)
break;
}
duration-=pauselen;
if(note->notenum < 72 && note->notenum >= 0)
xptone(((double)note_frequency[note->notenum])/1000,duration,WAVE_SHAPE_SINE_SAW_HARM);
if(note->notenum < 72 && note->notenum >= 0) {
if(device_open)
xptone(((double)note_frequency[note->notenum])/1000,duration,WAVE_SHAPE_SINE_SAW_HARM);
else
xpbeep(((double)note_frequency[note->notenum])/1000,duration);
}
else
SLEEP(duration);
SLEEP(pauselen);
......
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