Skip to content

Commit

Permalink
fix(build): add missing case to Dm_embellishmentToCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
lmichaelis committed Apr 30, 2024
1 parent 84de01a commit 166b56e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Common.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ DmCommandType Dm_embellishmentToCommand(DmEmbellishmentType embellishment) {
return DmCommand_BREAK;
case DmEmbellishment_END:
return DmCommand_END;
case DmEmbellishment_END_AND_INTRO:
return DmCommand_END_AND_INTRO;
}
return DmCommand_GROOVE;
}
Expand Down

0 comments on commit 166b56e

Please sign in to comment.