mirror of
https://github.com/tildearrow/furnace.git
synced 2024-12-02 01:07:25 +00:00
Fix macro volume multiplier (127 for MultiPCM, 64 for Amiga)
This commit is contained in:
parent
22e02ece24
commit
cf341b39a3
1 changed files with 1 additions and 1 deletions
|
@ -1694,7 +1694,7 @@ int DivPlatformOPL::dispatch(DivCommand c) {
|
||||||
case DIV_CMD_NOTE_ON: {
|
case DIV_CMD_NOTE_ON: {
|
||||||
if (PCM_CHECK(c.chan)) { // OPL4 PCM
|
if (PCM_CHECK(c.chan)) { // OPL4 PCM
|
||||||
DivInstrument* ins=parent->getIns(chan[c.chan].ins,DIV_INS_MULTIPCM);
|
DivInstrument* ins=parent->getIns(chan[c.chan].ins,DIV_INS_MULTIPCM);
|
||||||
chan[c.chan].macroVolMul=ins->type==DIV_INS_MULTIPCM?64:127;
|
chan[c.chan].macroVolMul=ins->type==DIV_INS_AMIGA?64:127;
|
||||||
if (c.value!=DIV_NOTE_NULL) {
|
if (c.value!=DIV_NOTE_NULL) {
|
||||||
chan[c.chan].sample=ins->amiga.getSample(c.value);
|
chan[c.chan].sample=ins->amiga.getSample(c.value);
|
||||||
chan[c.chan].sampleNote=c.value;
|
chan[c.chan].sampleNote=c.value;
|
||||||
|
|
Loading…
Reference in a new issue