mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-16 01:35:07 +00:00
commit
b73591970d
1 changed files with 6 additions and 0 deletions
|
@ -323,9 +323,15 @@ void DivPlatformX1_010::updateEnvelope(int ch) {
|
||||||
}
|
}
|
||||||
if (chan[ch].env.flag.envVinvR) { ro=15-ro; } // vertical invert right envelope
|
if (chan[ch].env.flag.envVinvR) { ro=15-ro; } // vertical invert right envelope
|
||||||
if (chan[ch].env.flag.envVinvL) { lo=15-lo; } // vertical invert left envelope
|
if (chan[ch].env.flag.envVinvL) { lo=15-lo; } // vertical invert left envelope
|
||||||
|
if (lo<0) lo=0;
|
||||||
|
if (lo>15) lo=15;
|
||||||
|
if (ro<0) ro=0;
|
||||||
|
if (ro>15) ro=15;
|
||||||
envWrite(ch,i,lo,ro);
|
envWrite(ch,i,lo,ro);
|
||||||
} else {
|
} else {
|
||||||
int out=wt->data[i*wt->len/128]*15/wt->max;
|
int out=wt->data[i*wt->len/128]*15/wt->max;
|
||||||
|
if (out<0) out=0;
|
||||||
|
if (out>15) out=15;
|
||||||
envWrite(ch,i,out,out);
|
envWrite(ch,i,out,out);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue