From 84de01a6871f41b31db0f5ed294fd3f4fecbf2a3 Mon Sep 17 00:00:00 2001 From: Luis Michaelis Date: Tue, 30 Apr 2024 20:42:37 +0200 Subject: [PATCH] fix(DmPerformance): broken `DmEmbellishmentType` enum value --- include/dmusic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dmusic.h b/include/dmusic.h index a15ce8d..8a327ab 100644 --- a/include/dmusic.h +++ b/include/dmusic.h @@ -272,7 +272,7 @@ typedef enum DmEmbellishmentType { DmEmbellishment_INTRO = 3, DmEmbellishment_BREAK = 4, DmEmbellishment_END = 5, - DmEmbellishment_END_AND_INTRO = 5, + DmEmbellishment_END_AND_INTRO = 6, } DmEmbellishmentType; DMAPI DmResult DmPerformance_create(DmPerformance** slf);