Add missing break to FxGlobalVariable::Resolve()

- Not like it matters much when there are no global variables of types
  float, fixed, or angle.
This commit is contained in:
Randy Heit 2015-02-08 21:01:49 -06:00
parent a063b48d7a
commit 79791629ec
1 changed files with 1 additions and 0 deletions

View File

@ -2053,6 +2053,7 @@ FxExpression *FxGlobalVariable::Resolve(FCompileContext&)
case VAL_Fixed:
case VAL_Angle:
ValueType = VAL_Float;
break;
case VAL_Object:
case VAL_Class: