mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
- fixed type truncation warning.
This commit is contained in:
parent
27ac207f4c
commit
8be690fbf2
1 changed files with 1 additions and 1 deletions
|
@ -3518,7 +3518,7 @@ FxFlopFunctionCall::FxFlopFunctionCall(size_t index, FArgumentList *args, const
|
|||
: FxExpression(pos)
|
||||
{
|
||||
assert(index < countof(FxFlops) && "FLOP index out of range");
|
||||
Index = index;
|
||||
Index = (int)index;
|
||||
ArgList = args;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue