Removed a warning from GCC
This commit is contained in:
parent
8461d1b4f3
commit
e1be03f0e7
1 changed files with 1 additions and 1 deletions
|
|
@ -192,7 +192,7 @@ void sfz::Voice::registerCC(int delay, int channel [[maybe_unused]], int ccNumbe
|
||||||
|
|
||||||
void sfz::Voice::registerPitchWheel(int delay, int channel, int pitch) noexcept
|
void sfz::Voice::registerPitchWheel(int delay, int channel, int pitch) noexcept
|
||||||
{
|
{
|
||||||
if (!channel == triggerChannel)
|
if (channel != triggerChannel)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (state == State::idle)
|
if (state == State::idle)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue