1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

dmsynth: Fix synth download of articulations list.

This commit is contained in:
Rémi Bernon 2023-09-23 13:47:39 +02:00 committed by Alexandre Julliard
parent 16f9bfd23f
commit a1e8352f54

View file

@ -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");