remove MBF_STRICT macro, complevel 11 isn't even affected

This commit is contained in:
Fabian Greffrath 2025-05-08 17:43:10 +02:00
parent 08cb38191d
commit 45f6abe217

View File

@ -438,7 +438,6 @@ void (*P_SetThingPosition)(struct mobj_s *thing) = P_SetThingPosition_MBF;
void P_SetThingPosition_SetFuncs(void)
{
#ifndef MBF_STRICT
if (demo_version < DV_MBF)
{
P_UnsetThingPosition = P_UnsetThingPosition_Boom;
@ -449,7 +448,6 @@ void P_SetThingPosition_SetFuncs(void)
P_UnsetThingPosition = P_UnsetThingPosition_MBF;
P_SetThingPosition = P_SetThingPosition_MBF;
}
#endif
}
// killough 3/15/98: