- Backend update from GZDoom.

This commit is contained in:
Christoph Oelckers 2023-05-27 10:10:42 +02:00
parent 5dfb0c902a
commit f3ea1e312a
11 changed files with 309 additions and 17 deletions

View file

@ -2568,7 +2568,15 @@ ExpEmit FxAssign::Emit(VMFunctionBuilder *build)
}
pointer.Free(build);
return result;
if(intconst)
{ //fix int constant return for assignment
return Right->Emit(build);
}
else
{
return result;
}
}
//==========================================================================