Skip to content
Snippets Groups Projects
Commit fae8833f authored by wolfs's avatar wolfs
Browse files

Fix the game getting flagged as modified by default

As a result, majormods trips for Lua and map replacements now, but modifiedgame isn't set for minor addons...
parent b955f4f6
No related branches found
No related tags found
No related merge requests found
......@@ -1280,9 +1280,6 @@ void D_SRB2Main(void)
{
mapheaderinfo[num - 1]->menuflags |= LF2_EXISTSHACK;
}
CONS_Printf("%s\n", name);
//mapsadded = true;
}
}
}
......@@ -1294,7 +1291,7 @@ void D_SRB2Main(void)
//
// search for maps... again.
//
for (wadnum = mainwads; wadnum < numwadfiles; wadnum++)
for (wadnum = mainwads+1; wadnum < numwadfiles; wadnum++)
{
lumpinfo = wadfiles[wadnum]->lumpinfo;
for (i = 0; i < wadfiles[wadnum]->numlumps; i++, lumpinfo++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment