mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-15 17:25:06 +00:00
OPLL: swap top and tom
This commit is contained in:
parent
fdd714e4d9
commit
52c03f1fd6
1 changed files with 2 additions and 2 deletions
|
@ -440,7 +440,7 @@ int DivPlatformOPLL::dispatch(DivCommand c) {
|
|||
}
|
||||
rWrite(0x36,drumVol[0]);
|
||||
rWrite(0x37,drumVol[1]|(drumVol[4]<<4));
|
||||
rWrite(0x38,drumVol[3]|(drumVol[2]<<4));
|
||||
rWrite(0x38,drumVol[2]|(drumVol[3]<<4));
|
||||
}
|
||||
chan[c.chan].freqChanged=true;
|
||||
}
|
||||
|
@ -475,7 +475,7 @@ int DivPlatformOPLL::dispatch(DivCommand c) {
|
|||
drumVol[c.chan-6]=15-chan[c.chan].outVol;
|
||||
rWrite(0x36,drumVol[0]);
|
||||
rWrite(0x37,drumVol[1]|(drumVol[4]<<4));
|
||||
rWrite(0x38,drumVol[3]|(drumVol[2]<<4));
|
||||
rWrite(0x38,drumVol[2]|(drumVol[3]<<4));
|
||||
break;
|
||||
}
|
||||
if (c.chan<6 || !drums) {
|
||||
|
|
Loading…
Reference in a new issue