Commit a1e8352f authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

dmsynth: Fix synth download of articulations list.

parent 16f9bfd2
......@@ -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");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment