mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Don't interpolate during net lag
This commit is contained in:
parent
11f97049b1
commit
2c36a8cefe
2 changed files with 3 additions and 3 deletions
|
|
@ -520,12 +520,12 @@ extern UINT8 hu_redownloadinggamestate;
|
|||
extern UINT8 adminpassmd5[16];
|
||||
extern boolean adminpasswordset;
|
||||
|
||||
extern boolean hu_stopped;
|
||||
|
||||
//
|
||||
// SRB2Kart
|
||||
//
|
||||
|
||||
extern boolean hu_stopped;
|
||||
|
||||
typedef struct rewind_s {
|
||||
UINT8 savebuffer[(768*1024)];
|
||||
tic_t leveltime;
|
||||
|
|
|
|||
|
|
@ -828,7 +828,7 @@ void D_SRB2Loop(void)
|
|||
{
|
||||
renderdeltatics = FLOAT_TO_FIXED(deltatics);
|
||||
|
||||
if (!(paused || P_AutoPause()))
|
||||
if (!(paused || P_AutoPause()) && !hu_stopped)
|
||||
{
|
||||
rendertimefrac = g_time.timefrac;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue