BUGFIX: dvmpatch do not send LDU2s until network is in non-idle state;

r05a04_dev
Bryan Biedenkapp 3 weeks ago
parent 69bceecd70
commit 637773f0c8

@ -2275,7 +2275,9 @@ void* HostPatch::threadMMDVMProcess(void* arg)
patch->checkNet_LDU1(); patch->checkNet_LDU1();
} }
patch->writeNet_LDU2(true); if (patch->m_netState != RS_NET_IDLE) {
patch->writeNet_LDU2(true);
}
break; break;
case 0x80U: case 0x80U:

Loading…
Cancel
Save

Powered by TurnKey Linux.