Mapster32: make 'corruptcheck tryfix ?' (or '??') not require c. number range.

git-svn-id: https://svn.eduke32.com/eduke32@3747 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2013-05-10 12:31:39 +00:00
parent 9f76b78496
commit fac799b782
1 changed files with 4 additions and 0 deletions

View File

@ -9153,11 +9153,15 @@ static int32_t osdcmd_vars_pk(const osdfuncparm_t *parm)
if (!Bstrcmp(parm->parms[i], "??"))
{
corrupt_tryfix_alt = 2;
if (parm->numparms==2)
whicherrs = 0xffffffffffffffffull;
break;
}
else if (!Bstrcmp(parm->parms[i], "?"))
{
corrupt_tryfix_alt = 1;
if (parm->numparms==2)
whicherrs = 0xffffffffffffffffull;
break;
}
}