Fix assert

This commit is contained in:
Randy Heit 2015-02-20 20:35:32 -06:00
parent 19ab774dc8
commit a64ebc720b
1 changed files with 1 additions and 1 deletions

View File

@ -1849,7 +1849,7 @@ ExpVal FxRandomPick::EvalExpression(AActor *self)
val.Type = VAL_Float;
val.Float = (*rng)(0x40000000) / double(0x40000000);
}
assert(val.Type == ValueType);
assert(val.Type == ValueType.Type);
return val;
}