mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-25 21:41:03 +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)
|
: FxExpression(pos)
|
||||||
{
|
{
|
||||||
assert(index < countof(FxFlops) && "FLOP index out of range");
|
assert(index < countof(FxFlops) && "FLOP index out of range");
|
||||||
Index = index;
|
Index = (int)index;
|
||||||
ArgList = args;
|
ArgList = args;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue