Skip to content

Commit

Permalink
dmsynth: Fix synth download of articulations list.
Browse files Browse the repository at this point in the history
  • Loading branch information
rbernon authored and julliard committed Oct 11, 2023
1 parent 16f9bfd commit a1e8352
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlls/dmsynth/synth.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit a1e8352

Please sign in to comment.