mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-27 06:53:01 +00:00
genesis: fix massive bug when muting SN
This commit is contained in:
parent
e35f48b7a0
commit
efd5e844ce
1 changed files with 1 additions and 1 deletions
|
@ -153,7 +153,7 @@ int DivPlatformGenesis::toFreq(int freq) {
|
|||
|
||||
void DivPlatformGenesis::muteChannel(int ch, bool mute) {
|
||||
if (ch>5) {
|
||||
psg.muteChannel(ch,mute);
|
||||
psg.muteChannel(ch-6,mute);
|
||||
return;
|
||||
}
|
||||
isMuted[ch]=mute;
|
||||
|
|
Loading…
Reference in a new issue