mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-28 16:50:15 -06:00
Wifi: -Wformat warning caused by missing printf argument (#1532)
This commit is contained in:

committed by
GitHub

parent
43d091361e
commit
bd9c614ceb
@ -872,7 +872,7 @@ bool ProcessTX(TXSlot* slot, int num)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ((num != 5) && (RAM[slot->Addr+4] > 0))
|
if ((num != 5) && (RAM[slot->Addr+4] > 0))
|
||||||
printf("SLOT %d RETRY COUNTER %d\n", RAM[slot->Addr+4]);
|
printf("SLOT %d RETRY COUNTER %d\n", num, RAM[slot->Addr+4]);
|
||||||
|
|
||||||
// set TX addr
|
// set TX addr
|
||||||
IOPORT(W_RXTXAddr) = slot->Addr >> 1;
|
IOPORT(W_RXTXAddr) = slot->Addr >> 1;
|
||||||
|
Reference in New Issue
Block a user