mirror of
https://github.com/ZDoom/ZMusic.git
synced 2024-11-15 00:41:36 +00:00
ADL & OPN: Added SysEx calls
They are supported by those engines and needed for XG and GS specific controls: GS custom drums are working and supported!
This commit is contained in:
parent
61f54f9487
commit
2f5332a461
2 changed files with 2 additions and 0 deletions
|
@ -199,6 +199,7 @@ void ADLMIDIDevice::HandleEvent(int status, int parm1, int parm2)
|
|||
|
||||
void ADLMIDIDevice::HandleLongEvent(const uint8_t *data, int len)
|
||||
{
|
||||
adl_rt_systemExclusive(Renderer, data, len);
|
||||
}
|
||||
|
||||
static const ADLMIDI_AudioFormat audio_output_format =
|
||||
|
|
|
@ -208,6 +208,7 @@ void OPNMIDIDevice::HandleEvent(int status, int parm1, int parm2)
|
|||
|
||||
void OPNMIDIDevice::HandleLongEvent(const uint8_t *data, int len)
|
||||
{
|
||||
opn2_rt_systemExclusive(Renderer, data, len);
|
||||
}
|
||||
|
||||
static const OPNMIDI_AudioFormat audio_output_format =
|
||||
|
|
Loading…
Reference in a new issue