mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-03-03 07:11:28 +00:00
- fixed leaking full VM frames
https://forum.zdoom.org/viewtopic.php?t=69055
This commit is contained in:
parent
a0fee03209
commit
f2b1d45985
1 changed files with 1 additions and 1 deletions
|
@ -389,7 +389,7 @@ static void PopFullVMFrame(VMFrameStack *stack)
|
||||||
|
|
||||||
void JitCompiler::EmitPopFrame()
|
void JitCompiler::EmitPopFrame()
|
||||||
{
|
{
|
||||||
if (sfunc->SpecialInits.Size() != 0 || sfunc->NumRegS != 0)
|
if (sfunc->SpecialInits.Size() != 0 || sfunc->NumRegS != 0 || sfunc->ExtraSpace != 0)
|
||||||
{
|
{
|
||||||
auto popFrame = CreateCall<void, VMFrameStack *>(PopFullVMFrame);
|
auto popFrame = CreateCall<void, VMFrameStack *>(PopFullVMFrame);
|
||||||
popFrame->setArg(0, stack);
|
popFrame->setArg(0, stack);
|
||||||
|
|
Loading…
Reference in a new issue