1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-20 04:24:48 +00:00
QB64-PE/tests/compile_tests/midi/custom-soundfont.bas
2024-07-03 14:00:36 +05:30

14 lines
268 B
QBasic

' This should compile and load the file successfully without using any soundfont
$CONSOLE
$SCREENHIDE
_DEST _CONSOLE
CHDIR _STARTDIR$
$UNSTABLE:MIDI
$MidiSoundFont: "tests/compile_tests/midi/test-soundfont.sf2"
handle = _SNDOPEN("./midi.mid")
PRINT handle;
SYSTEM