mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
I meant consvar_number_of_netids to be exclusive :V
This commit is contained in:
parent
f7503adbde
commit
785ff5b8eb
1 changed files with 1 additions and 1 deletions
|
|
@ -1188,7 +1188,7 @@ static consvar_t *CV_FindNetVar(UINT16 netid)
|
|||
{
|
||||
consvar_t *cvar;
|
||||
|
||||
if (netid > consvar_number_of_netids)
|
||||
if (netid >= consvar_number_of_netids)
|
||||
return NULL;
|
||||
|
||||
for (cvar = consvar_vars; cvar; cvar = cvar->next)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue