Skip to content

Commit

Permalink
Removing channel deactivaton upon note off
Browse files Browse the repository at this point in the history
  • Loading branch information
Kagamiin committed Oct 27, 2023
1 parent 47c4273 commit 4602427
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/engine/platform/esfm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -451,12 +451,10 @@ int DivPlatformESFM::dispatch(DivCommand c) {
case DIV_CMD_NOTE_OFF:
chan[c.chan].keyOff=true;
chan[c.chan].keyOn=false;
chan[c.chan].active=false;
break;
case DIV_CMD_NOTE_OFF_ENV:
chan[c.chan].keyOff=true;
chan[c.chan].keyOn=false;
chan[c.chan].active=false;
chan[c.chan].std.release();
break;
case DIV_CMD_ENV_RELEASE:
Expand Down

0 comments on commit 4602427

Please sign in to comment.