- GCC warning removal.

* This may or may not be a problem, but GCC warned that FStateDefinitions::
    AddStateDefines() does not initialize def.FStateDefine::DefineFlags, so
    I fixed that.


SVN r1262 (trunk)
This commit is contained in:
Randy Heit 2008-10-14 03:21:53 +00:00
commit 738e8ca7ad
6 changed files with 8 additions and 3 deletions

View file

@ -582,6 +582,7 @@ void FStateDefinitions::AddStateDefines(const FStateLabels *list)
def.Label = list->Labels[i].Label;
def.State = list->Labels[i].State;
def.DefineFlags = SDF_STATE;
StateLabels.Push(def);
}
}