From 049b90e25eecf79e5345ddb53ce069a72d453a54 Mon Sep 17 00:00:00 2001 From: nhmall Date: Thu, 26 Jan 2023 17:38:18 -0500 Subject: [PATCH] fix the missing break mentioned in previous commit ... but inadvertently left out of that commit. --- sound/windsound/windsound.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sound/windsound/windsound.c b/sound/windsound/windsound.c index 25a69d905..2c8226b6d 100644 --- a/sound/windsound/windsound.c +++ b/sound/windsound/windsound.c @@ -118,6 +118,7 @@ windsound_hero_playnotes(int32_t instrument, const char *str, int32_t volume) case ins_cello: /* MAGIC_HARP */ Strcpy(resourcename, "sound_Magic_Harp"); has_note_variations = TRUE; + break; case ins_tinkle_bell: Strcpy(resourcename, "sound_Bell"); break;