mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- fixed redundant variable declaration shadowing an outer one.
This commit is contained in:
parent
2a6fafa15e
commit
45d3b58cc6
1 changed files with 1 additions and 1 deletions
|
@ -8133,7 +8133,7 @@ FxExpression *FxVMFunctionCall::Resolve(FCompileContext& ctx)
|
|||
if (ArgList[i]->ValueType == TypeName ||
|
||||
ArgList[i]->ValueType == TypeSound)
|
||||
{
|
||||
FxExpression* x = new FxStringCast(ArgList[i]);
|
||||
x = new FxStringCast(ArgList[i]);
|
||||
x = x->Resolve(ctx);
|
||||
}
|
||||
else x = ArgList[i];
|
||||
|
|
Loading…
Reference in a new issue