mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-12 11:10:39 +00:00
SW: Make the function GetSyncInfoFromPacket in sync.cpp match the declaration in net.cpp. Fixed signed-ness of lumplockbyte to stop unresolved externals.
Patch from Striker. git-svn-id: https://svn.eduke32.com/eduke32@7506 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
8ab6e700f1
commit
78df29ce00
2 changed files with 2 additions and 2 deletions
|
@ -248,7 +248,7 @@ int PlayerYellVocs[] =
|
|||
DIGI_PLAYERYELL3
|
||||
};
|
||||
|
||||
extern unsigned char lumplockbyte[];
|
||||
extern char lumplockbyte[];
|
||||
|
||||
#if 0
|
||||
// DEBUG
|
||||
|
|
|
@ -419,7 +419,7 @@ SyncStatMessage(void)
|
|||
|
||||
|
||||
void
|
||||
GetSyncInfoFromPacket(char *packbuf, int packbufleng, int *j, int otherconnectindex)
|
||||
GetSyncInfoFromPacket(uint8_t *packbuf, int packbufleng, int *j, int otherconnectindex)
|
||||
{
|
||||
int sb, i;
|
||||
extern int syncvaltail, syncvaltottail;
|
||||
|
|
Loading…
Reference in a new issue