Game Boy: whoops

This commit is contained in:
tildearrow 2022-08-14 23:30:36 -05:00
parent 1a4a58d970
commit a34c9806cb
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ const char* DivPlatformGB::getEffectName(unsigned char effect) {
void DivPlatformGB::acquire(short* bufL, short* bufR, size_t start, size_t len) {
for (size_t i=start; i<start+len; i++) {
while (!writes.empty()) {
if (!writes.empty()) {
QueuedWrite& w=writes.front();
GB_apu_write(gb,w.addr,w.val);
writes.pop();