FIX: DLC Loader now syncs data with game

This commit is contained in:
Rodrigo Alfonso
2025-02-17 07:22:30 -03:00
parent 9d4b61157a
commit 918d279eee

View File

@@ -72,6 +72,8 @@ inline void acknowledgeSerialInterrupt() {
// ---
bool send(u16 data, CancelCallback cancel) {
setData(data);
while (!didSerialInterruptOccur()) {
if (cancel())
return false;
@@ -80,8 +82,6 @@ bool send(u16 data, CancelCallback cancel) {
if (assignedPlayerId() != 1)
return false;
setData(data);
return true;
}