Add an explicit fallthrough

This commit is contained in:
Paul Fd 2020-03-15 16:44:26 +01:00
parent 5295a97981
commit 1c80c65ae0

View file

@ -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;