- store floating point parameters for DECORATE properties as doubles.

This commit is contained in:
Christoph Oelckers 2016-02-12 01:21:29 +01:00
commit d25455736a
3 changed files with 12 additions and 9 deletions

View file

@ -825,7 +825,7 @@ static bool ParsePropertyParams(FScanner &sc, FPropertyInfo *prop, AActor *defau
case 'F':
sc.MustGetFloat();
conv.f = float(sc.Float);
conv.d = sc.Float;
break;
case 'Z': // an optional string. Does not allow any numerical value.