Use new type system with DECORATE

This commit is contained in:
Randy Heit 2016-02-29 21:11:24 -06:00
commit f23c0121c5
5 changed files with 197 additions and 364 deletions

View file

@ -127,7 +127,7 @@ FxExpression *ParseParameter(FScanner &sc, PClassActor *cls, PType *type, bool c
v = MAKEARGB(1, RPART(c), GPART(c), BPART(c));
}
ExpVal val;
val.Type = VAL_Color;
val.Type = TypeColor;
val.Int = v;
x = new FxConstant(val, sc);
}