mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-15 17:25:06 +00:00
Amiga: respect max period
This commit is contained in:
parent
5666cd3bce
commit
93f82637ad
1 changed files with 4 additions and 1 deletions
|
@ -26,7 +26,10 @@ void DivPlatformAmiga::acquire(short* bufL, short* bufR, size_t start, size_t le
|
||||||
chan[i].sample=-1;
|
chan[i].sample=-1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
chan[i].audSub+=chan[i].freq;
|
/*if (chan[i].freq<124) {
|
||||||
|
// ???
|
||||||
|
}*/
|
||||||
|
chan[i].audSub+=MAX(114,chan[i].freq);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!isMuted[i]) {
|
if (!isMuted[i]) {
|
||||||
|
|
Loading…
Reference in a new issue