dmsynth: Fix synth download of articulations list.
This commit is contained in:
parent
16f9bfd23f
commit
a1e8352f54
1 changed files with 1 additions and 1 deletions
|
@ -442,7 +442,7 @@ static HRESULT synth_download_articulation2(struct synth *This, ULONG *offsets,
|
|||
{
|
||||
articulation_info = (DMUS_ARTICULATION2 *)(data + offsets[index]);
|
||||
list = (CONNECTIONLIST *)(data + offsets[articulation_info->ulArtIdx]);
|
||||
connections = (CONNECTION *)list + 1;
|
||||
connections = (CONNECTION *)(list + 1);
|
||||
|
||||
if (TRACE_ON(dmsynth)) dump_connectionlist(list);
|
||||
if (articulation_info->ulFirstExtCkIdx) FIXME("Articulation extensions not implemented\n");
|
||||
|
|
Loading…
Add table
Reference in a new issue