mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 10:40:46 +00:00
another 64-bit fix
git-svn-id: https://svn.eduke32.com/eduke32@1861 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
76a7799d7c
commit
a1c4c6dce7
1 changed files with 1 additions and 1 deletions
|
@ -2584,7 +2584,7 @@ void Net_GetPackets(void)
|
|||
Bmemcpy((uint8_t *)(buf)+datasiz, event.packet->data, event.packet->dataLength);
|
||||
datasiz += SYNCPACKETSIZE;
|
||||
|
||||
Bsprintf(tbuf, "RECEIVED %d BYTES\n", datasiz);
|
||||
Bsprintf(tbuf, "RECEIVED %d BYTES\n", (int32_t)datasiz);
|
||||
gametext(160,190,tbuf,14,2);
|
||||
}
|
||||
// last packet of mapstate sequence
|
||||
|
|
Loading…
Reference in a new issue