PCE: Fix Freezing during intro on Tanjou Debut ( # 176 ) (#766)

Treat SendDataRequest sane as SendStatus during Latency wat periods. It was freezing only when "Normal Seek" was in place; this seems to be a result of sending data requests during wait periods, when statuses were not sent.
This commit is contained in:
David Shadoff
2023-04-03 11:18:45 -04:00
committed by GitHub
parent ef85fced17
commit 7788e694dd

View File

@@ -38,7 +38,7 @@ void pcecd_poll()
pcecdd.SendStatus(pcecdd.GetStatus());
pcecdd.has_status = 0;
}
else if (pcecdd.data_req) {
else if (pcecdd.data_req && !pcecdd.latency) {
pcecdd.SendDataRequest();
pcecdd.data_req = false;