mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-21 18:32:08 +00:00
Fix goofup with addonsp patch unlock for loop from 2.1.13 merge
This commit is contained in:
parent
7a0d8b408e
commit
ae244d2af3
1 changed files with 1 additions and 1 deletions
|
@ -4839,7 +4839,7 @@ static void M_Addons(INT32 choice)
|
|||
if (addonsp[0]) // never going to have some provided but not all, saves individually checking
|
||||
{
|
||||
size_t i;
|
||||
for (i = 0; i < NUM_EXT+4; i++)
|
||||
for (i = 0; i < NUM_EXT+5; i++)
|
||||
W_UnlockCachedPatch(addonsp[i]);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue