mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-29 15:22:08 +00:00
Fixed Sector.SetYScale() function in ZScript
https://forum.zdoom.org/viewtopic.php?t=59224
This commit is contained in:
parent
577c6b033e
commit
a77b253cba
1 changed files with 1 additions and 1 deletions
|
@ -1659,7 +1659,7 @@ DEFINE_ACTION_FUNCTION(_Sector, NextLowestFloorAt)
|
||||||
PARAM_SELF_STRUCT_PROLOGUE(sector_t);
|
PARAM_SELF_STRUCT_PROLOGUE(sector_t);
|
||||||
PARAM_INT(pos);
|
PARAM_INT(pos);
|
||||||
PARAM_FLOAT(o);
|
PARAM_FLOAT(o);
|
||||||
self->SetXScale(pos, o);
|
self->SetYScale(pos, o);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue