mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 12:01:47 +00:00
Start checking files from correct position on rejoin
This commit is contained in:
parent
6d72b80984
commit
4712daddf9
1 changed files with 6 additions and 1 deletions
|
|
@ -459,7 +459,12 @@ INT32 CL_CheckFiles(void)
|
||||||
if (modifiedgame)
|
if (modifiedgame)
|
||||||
{
|
{
|
||||||
CONS_Debug(DBG_NETPLAY, "game is modified; only doing basic checks\n");
|
CONS_Debug(DBG_NETPLAY, "game is modified; only doing basic checks\n");
|
||||||
for (i = 0, j = mainwads+1; i < fileneedednum || j < numwadfiles;)
|
#ifdef DEVELOP
|
||||||
|
j = 0;
|
||||||
|
#else
|
||||||
|
j = mainwads + 1;
|
||||||
|
#endif
|
||||||
|
for (i = 0; i < fileneedednum || j < numwadfiles;)
|
||||||
{
|
{
|
||||||
if (j < numwadfiles && !wadfiles[j]->important)
|
if (j < numwadfiles && !wadfiles[j]->important)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue