mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-27 06:53:01 +00:00
POKEY: audc is set for wrong channel when channels 3 & 4 are paired
This commit is contained in:
parent
e75413c0c7
commit
8e009509db
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ void DivPlatformPOKEY::tick(bool sysTick) {
|
|||
chan[i].ctlChanged=false;
|
||||
if ((i==1 && audctl&16) || (i==3 && audctl&8)) {
|
||||
// ignore - channel is paired
|
||||
} else if ((i==0 && audctl&16) || (i==0 && audctl&8)) {
|
||||
} else if ((i==0 && audctl&16) || (i==2 && audctl&8)) {
|
||||
rWrite(1+(i<<1),0);
|
||||
rWrite(3+(i<<1),val);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue