mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +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
|
||||
{
|
||||
int cast;
|
||||
int cast = 0;
|
||||
strng = ExpEmit(build, REGT_STRING);
|
||||
if (op1.Konst)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue