mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-27 23:13:01 +00:00
More fixes
This commit is contained in:
parent
8f783e604a
commit
f56e09606a
1 changed files with 2 additions and 2 deletions
|
@ -161,8 +161,8 @@ void DivPlatformK053260::tick(bool sysTick) {
|
|||
start=start+MIN(chan[i].audPos,s->length8);
|
||||
length=MAX(1,length-chan[i].audPos);
|
||||
}
|
||||
start=MIN(start,getSampleMemCapacity()-31);
|
||||
length=MIN(length,getSampleMemCapacity()-31);
|
||||
start=MIN(start,getSampleMemCapacity());
|
||||
length=MIN(65535,MIN(length,getSampleMemCapacity()));
|
||||
rWrite(0x28,keyoff); // force keyoff first
|
||||
rWrite(0x2a,loopoff);
|
||||
chWrite(i,2,length&0xff);
|
||||
|
|
Loading…
Reference in a new issue