mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-23 21:15:11 +00:00
Fix playback issue
This commit is contained in:
parent
eb8849ce63
commit
f620782919
1 changed files with 14 additions and 13 deletions
|
@ -88,8 +88,8 @@ void DivPlatformMSM6295::acquire(short* bufL, short* bufR, size_t start, size_t
|
|||
}
|
||||
|
||||
void DivPlatformMSM6295::tick(bool sysTick) {
|
||||
if (parent->song.disableSampleMacro) return;
|
||||
for (int i=0; i<4; i++) {
|
||||
if (parent->song.disableSampleMacro) {
|
||||
chan[i].std.next();
|
||||
if (chan[i].std.vol.had) {
|
||||
chan[i].outVol=VOL_SCALE_LOG(chan[i].std.vol.val,chan[i].vol,8);
|
||||
|
@ -105,6 +105,7 @@ void DivPlatformMSM6295::tick(bool sysTick) {
|
|||
chan[i].keyOn=true;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (chan[i].keyOn || chan[i].keyOff) {
|
||||
rWriteDelay(0,(8<<i),60); // turn off
|
||||
if (chan[i].active && !chan[i].keyOff) {
|
||||
|
|
Loading…
Reference in a new issue