Unlock all secrets for dedicated

If wanted we can just add dedicated checks to Encore & Hard Mode, but I figured this would be quicker and more future-proof.
This commit is contained in:
TehRealSalt 2018-11-25 02:30:08 -05:00
parent c67e7f1709
commit 01f5787e51
1 changed files with 6 additions and 0 deletions

View File

@ -535,6 +535,12 @@ UINT8 M_AnySecretUnlocked(void)
UINT8 M_SecretUnlocked(INT32 type)
{
INT32 i;
#if 1
if (dedicated)
return true;
#endif
for (i = 0; i < MAXUNLOCKABLES; ++i)
{
if (unlockables[i].type == type && unlockables[i].unlocked)