mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-16 01:35:07 +00:00
No need to de-duplicate writes here
This commit is contained in:
parent
25088d6032
commit
56be067af6
1 changed files with 2 additions and 5 deletions
|
@ -97,11 +97,8 @@ void DivPlatformWS::acquire(short* bufL, short* bufR, size_t start, size_t len)
|
||||||
// the rest
|
// the rest
|
||||||
while (!writes.empty()) {
|
while (!writes.empty()) {
|
||||||
QueuedWrite w=writes.front();
|
QueuedWrite w=writes.front();
|
||||||
if (regPool[w.addr]!=w.val) {
|
if (w.addr<0x40) ws->SoundWrite(w.addr|0x80,w.val);
|
||||||
if (w.addr<0x40) ws->SoundWrite(w.addr|0x80,w.val);
|
else ws->RAMWrite(w.addr&0x3f,w.val);
|
||||||
else ws->RAMWrite(w.addr&0x3f,w.val);
|
|
||||||
regPool[w.addr]=w.val;
|
|
||||||
}
|
|
||||||
writes.pop();
|
writes.pop();
|
||||||
}
|
}
|
||||||
int16_t samp[2]{0, 0};
|
int16_t samp[2]{0, 0};
|
||||||
|
|
Loading…
Reference in a new issue