mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-02 22:01:41 +00:00
Fix typo that was always calling SetXOffset even in SetYOffset
This commit is contained in:
parent
a4a4e4e9f9
commit
662027f429
1 changed files with 1 additions and 1 deletions
|
@ -562,7 +562,7 @@ DEFINE_ACTION_FUNCTION_NATIVE(_Sector, SetXOffset, SetXOffset)
|
||||||
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->SetXOffset(pos, o);
|
self->SetYOffset(pos, o);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue