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:
hendricks266 2019-04-08 06:26:17 +00:00 committed by Christoph Oelckers
parent 8ab6e700f1
commit 78df29ce00
2 changed files with 2 additions and 2 deletions

View file

@ -248,7 +248,7 @@ int PlayerYellVocs[] =
DIGI_PLAYERYELL3
};
extern unsigned char lumplockbyte[];
extern char lumplockbyte[];
#if 0
// DEBUG

View file

@ -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;