Skip to content

Commit

Permalink
dmband: Set DMUS_PATCH_PMSG bank LSB/MSB from instrument patch.
Browse files Browse the repository at this point in the history
  • Loading branch information
rbernon authored and julliard committed Oct 18, 2023
1 parent 10a1e53 commit e9fdbe4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions dlls/dmband/band.c
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ HRESULT band_send_messages(IDirectMusicBand *iface, IDirectMusicPerformance *per

LIST_FOR_EACH_ENTRY_REV(entry, &This->instruments, struct instrument_entry, entry)
{
DWORD patch = entry->instrument.dwPatch;
DMUS_PATCH_PMSG *msg;

if (FAILED(hr = IDirectMusicPerformance_AllocPMsg(performance, sizeof(*msg),
Expand All @@ -510,6 +511,13 @@ HRESULT band_send_messages(IDirectMusicBand *iface, IDirectMusicPerformance *per
msg->dwGroupID = 1;
msg->byInstrument = entry->instrument.dwPatch;

msg->byInstrument = patch & 0x7F;
patch >>= 8;
msg->byLSB = patch & 0x7f;
patch >>= 8;
msg->byMSB = patch & 0x7f;
patch >>= 8;

if (FAILED(hr = IDirectMusicGraph_StampPMsg(graph, (DMUS_PMSG *)msg))
|| FAILED(hr = IDirectMusicPerformance_SendPMsg(performance, (DMUS_PMSG *)msg)))
{
Expand Down

0 comments on commit e9fdbe4

Please sign in to comment.