From: nhmall Date: Thu, 26 Jan 2023 22:38:18 +0000 (-0500) Subject: fix the missing break mentioned in previous commit X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=049b90e25eecf79e5345ddb53ce069a72d453a54;p=nethack fix the missing break mentioned in previous commit ... but inadvertently left out of that commit. --- 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;