mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
Extratics mode 3 didn't work well
- Removed Extratics mode 3 - Fixed a typo
This commit is contained in:
parent
4041f56cc8
commit
78f8bf19d2
1 changed files with 3 additions and 4 deletions
|
@ -159,9 +159,9 @@ CUSTOM_CVAR(Int, net_extratic, 0, CVAR_SERVERINFO)
|
|||
{
|
||||
self = 0;
|
||||
}
|
||||
else if (self > 3)
|
||||
else if (self > 2)
|
||||
{
|
||||
I_SetFPSLimit(-1);
|
||||
self = 2;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1183,8 +1183,7 @@ void NetUpdate (void)
|
|||
default:
|
||||
resendto[i] = MAX(0, lowtic); break;
|
||||
case 1: resendto[i] = MAX(0, lowtic - 1); break;
|
||||
case 2: resendto[i] = MAX(0, lowtic - (lowtic - nettics[i])); break;
|
||||
case 3: resendto[i] = MAX(0, lowtic - (BACKUPTICS / 2 - 1)); break;
|
||||
case 2: resendto[i] = MAX(0, nettics[i]); break;
|
||||
}
|
||||
|
||||
if (numtics == 0 && resendOnly && !remoteresend[i] && nettics[i])
|
||||
|
|
Loading…
Reference in a new issue