mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-25 13:41:05 +00:00
- fixed uninitialized variable warning in codegen.cpp
This commit is contained in:
parent
fcb1c1edc4
commit
e0540c6b37
1 changed files with 1 additions and 1 deletions
|
@ -3980,7 +3980,7 @@ ExpEmit FxConcat::Emit(VMFunctionBuilder *build)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
int cast;
|
int cast = 0;
|
||||||
strng = ExpEmit(build, REGT_STRING);
|
strng = ExpEmit(build, REGT_STRING);
|
||||||
if (op1.Konst)
|
if (op1.Konst)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue