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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user