mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2025-02-18 09:31:09 +00:00
- fixed uninitialized variable warning in codegen.cpp
This commit is contained in:
parent
b865e9ce02
commit
9aa49a9199
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