mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-09 12:46:19 +00:00
Fix mismatched type of followercolor in netsave
This commit is contained in:
parent
ccff8dc2ba
commit
7d6d0f216a
1 changed files with 1 additions and 1 deletions
|
|
@ -436,7 +436,7 @@ static void P_NetUnArchivePlayers(void)
|
|||
|
||||
players[i].followerskin = READUINT8(save_p);
|
||||
players[i].followerready = READUINT8(save_p);
|
||||
players[i].followercolor = READUINT8(save_p);
|
||||
players[i].followercolor = READUINT16(save_p);
|
||||
if (flags & FOLLOWER)
|
||||
players[i].follower = (mobj_t *)(size_t)READUINT32(save_p);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue