- fixed uninitialized variable warning in codegen.cpp

This commit is contained in:
Christoph Oelckers 2017-01-06 10:33:58 +01:00
parent fcb1c1edc4
commit e0540c6b37

View file

@ -3980,7 +3980,7 @@ ExpEmit FxConcat::Emit(VMFunctionBuilder *build)
}
else
{
int cast;
int cast = 0;
strng = ExpEmit(build, REGT_STRING);
if (op1.Konst)
{