mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Sync numbulbs
I don't think this has ever caused issues (numbulbs is just for HUD), but the drawn bulbs on start up might as well be synched if the starttime needs to be resynched too.
This commit is contained in:
parent
e2dcc35bcd
commit
b91ceddcbf
1 changed files with 2 additions and 0 deletions
|
|
@ -4178,6 +4178,7 @@ static void P_NetArchiveMisc(void)
|
|||
|
||||
WRITEUINT32(save_p, introtime);
|
||||
WRITEUINT32(save_p, starttime);
|
||||
WRITEUINT8(save_p, numbulbs);
|
||||
|
||||
// Is it paused?
|
||||
if (paused)
|
||||
|
|
@ -4312,6 +4313,7 @@ static inline boolean P_NetUnArchiveMisc(void)
|
|||
|
||||
introtime = READUINT32(save_p);
|
||||
starttime = READUINT32(save_p);
|
||||
numbulbs = READUINT8(save_p);
|
||||
|
||||
// Is it paused?
|
||||
if (READUINT8(save_p) == 0x2f)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue