From 4e9e2862131c86024fb14b7eb3bf811aa42199ae Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Tue, 18 Feb 2020 15:08:58 +0100 Subject: [PATCH] Removed the now unused `release` state in Voice --- src/sfizz/Voice.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/sfizz/Voice.h b/src/sfizz/Voice.h index 3b1f7f26..51830ba0 100644 --- a/src/sfizz/Voice.h +++ b/src/sfizz/Voice.h @@ -247,8 +247,7 @@ private: enum class State { idle, - playing, - release + playing }; State state { State::idle }; bool noteIsOff { false };