mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-16 17:41:19 +00:00
- fixed LevelLocals.isFrozen() return value with JIT disabled
No more 'Number of parameters returned differs from what was expected by the caller' assertion failures
This commit is contained in:
parent
ca9967d13b
commit
0dbf2e3df7
1 changed files with 1 additions and 1 deletions
|
@ -2753,7 +2753,7 @@ static int isFrozen(FLevelLocals *self)
|
|||
DEFINE_ACTION_FUNCTION_NATIVE(FLevelLocals, isFrozen, isFrozen)
|
||||
{
|
||||
PARAM_SELF_STRUCT_PROLOGUE(FLevelLocals);
|
||||
return isFrozen(self);
|
||||
ACTION_RETURN_INT(isFrozen(self));
|
||||
}
|
||||
|
||||
void setFrozen(FLevelLocals *self, int on)
|
||||
|
|
Loading…
Reference in a new issue