- replaced gl_PatchMenu with an MMX 'ifoption' check.

This commit is contained in:
Christoph Oelckers 2018-04-25 19:36:48 +02:00
commit 85300993af
4 changed files with 33 additions and 35 deletions

View file

@ -240,6 +240,12 @@ static bool CheckSkipOptionBlock(FScanner &sc)
{
filter |= IsOpenALPresent();
}
else if (sc.Compare("MMX"))
{
#ifdef HAVE_MMX
filter = true;
#endif
}
}
while (sc.CheckString(","));
sc.MustGetStringName(")");