mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 09:21:36 +00:00
Fix harmless "cast to pointer from integer of different size" warning with x64.
git-svn-id: https://svn.eduke32.com/eduke32@2696 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
eebddcd559
commit
a485ee8ca0
1 changed files with 1 additions and 1 deletions
|
@ -673,7 +673,7 @@ void Net_SyncPlayer(ENetEvent *event)
|
|||
break;
|
||||
if (i == -1)
|
||||
i = playerswhenstarted++;
|
||||
event->peer->data = (void *)i;
|
||||
event->peer->data = (void *)(intptr_t)i;
|
||||
|
||||
g_player[i].netsynctime = totalclock;
|
||||
g_player[i].playerquitflag = 1;
|
||||
|
|
Loading…
Reference in a new issue