From 1c80c65ae00f0d2742025c3d9bed17d0e48f13da Mon Sep 17 00:00:00 2001 From: Paul Fd Date: Sun, 15 Mar 2020 16:44:26 +0100 Subject: [PATCH] Add an explicit fallthrough --- src/sfizz/Voice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfizz/Voice.cpp b/src/sfizz/Voice.cpp index 065a6672..9ecd48b8 100644 --- a/src/sfizz/Voice.cpp +++ b/src/sfizz/Voice.cpp @@ -46,7 +46,7 @@ void sfz::Voice::startVoice(Region* region, int delay, int number, uint8_t value case hash("*sine"): wave = resources.waveSin; break; - case hash("*triangle"): + case hash("*triangle"): // fallthrough case hash("*tri"): wave = resources.waveTriangle; break;