- Removed thingdef_specials.h and thingdef_specials.gperf and replaced

line special definition with something that automatically gets updated
  if new specials are added.


SVN r814 (trunk)
This commit is contained in:
Christoph Oelckers 2008-03-19 12:48:02 +00:00
commit ee69e7bf03
11 changed files with 321 additions and 700 deletions

View file

@ -806,9 +806,8 @@ static ExpData *ParseExpressionA (FScanner &sc, const PClass *cls)
int specnum, min_args, max_args;
// Check if this is an action special
strlwr (sc.String);
specnum = FindLineSpecialEx (sc.String, &min_args, &max_args);
if (specnum != 0)
specnum = P_FindLineSpecial (sc.String, &min_args, &max_args);
if (specnum != 0 && min_args >= 0)
{
int i;