mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-15 17:25:06 +00:00
disableSampleMacro for MSM6258
This commit is contained in:
parent
4bf46f9315
commit
a5fb9b766e
1 changed files with 21 additions and 19 deletions
|
@ -91,28 +91,30 @@ void DivPlatformMSM6258::acquire(short* bufL, short* bufR, size_t start, size_t
|
||||||
|
|
||||||
void DivPlatformMSM6258::tick(bool sysTick) {
|
void DivPlatformMSM6258::tick(bool sysTick) {
|
||||||
for (int i=0; i<1; i++) {
|
for (int i=0; i<1; i++) {
|
||||||
chan[i].std.next();
|
if (!parent->song.disableSampleMacro) {
|
||||||
if (chan[i].std.duty.had) {
|
chan[i].std.next();
|
||||||
if (rateSel!=(chan[i].std.duty.val&3)) {
|
if (chan[i].std.duty.had) {
|
||||||
rateSel=chan[i].std.duty.val&3;
|
if (rateSel!=(chan[i].std.duty.val&3)) {
|
||||||
rWrite(12,rateSel);
|
rateSel=chan[i].std.duty.val&3;
|
||||||
|
rWrite(12,rateSel);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
if (chan[i].std.panL.had) {
|
||||||
if (chan[i].std.panL.had) {
|
if (chan[i].pan!=(chan[i].std.panL.val&3)) {
|
||||||
if (chan[i].pan!=(chan[i].std.panL.val&3)) {
|
chan[i].pan=chan[i].std.panL.val&3;
|
||||||
chan[i].pan=chan[i].std.panL.val&3;
|
rWrite(2,chan[i].pan);
|
||||||
rWrite(2,chan[i].pan);
|
}
|
||||||
}
|
}
|
||||||
}
|
if (chan[i].std.ex1.had) {
|
||||||
if (chan[i].std.ex1.had) {
|
if (clockSel!=(chan[i].std.ex1.val&1)) {
|
||||||
if (clockSel!=(chan[i].std.ex1.val&1)) {
|
clockSel=chan[i].std.ex1.val&1;
|
||||||
clockSel=chan[i].std.ex1.val&1;
|
rWrite(8,clockSel);
|
||||||
rWrite(8,clockSel);
|
}
|
||||||
}
|
}
|
||||||
}
|
if (chan[i].std.phaseReset.had) {
|
||||||
if (chan[i].std.phaseReset.had) {
|
if (chan[i].std.phaseReset.val && chan[i].active) {
|
||||||
if (chan[i].std.phaseReset.val && chan[i].active) {
|
chan[i].keyOn=true;
|
||||||
chan[i].keyOn=true;
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (chan[i].keyOn || chan[i].keyOff) {
|
if (chan[i].keyOn || chan[i].keyOff) {
|
||||||
|
|
Loading…
Reference in a new issue