mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-30 00:13:03 +00:00
SAP-R export: fix length in low-latency mode
This commit is contained in:
parent
54745bec3b
commit
ff0297bcba
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ void DivExportSAPR::run() {
|
|||
std::array<uint8_t, 9> currRegs;
|
||||
|
||||
while (!done) {
|
||||
if (e->nextTick() || !e->playing) {
|
||||
if (e->nextTick(false,true) || !e->playing) {
|
||||
done=true;
|
||||
for (int i=0; i<e->song.systemLen; i++) {
|
||||
e->disCont[i].dispatch->getRegisterWrites().clear();
|
||||
|
|
Loading…
Reference in a new issue