diff options
| author | Dragorn421 <Dragorn421@users.noreply.github.com> | 2022-10-12 00:47:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-12 00:47:33 +0200 |
| commit | 40a4abefa55de5a06c6b6f35f8630c673806d9ba (patch) | |
| tree | aad7e0dfb12c8ef300cc7b3db0546fd28166219c /src/code/z_actor.c | |
| parent | 3ee2190b8d8c71e8245b3d607f804acbad020cd2 (diff) | |
Doc dynapoly move flags (#1372)
* Doc dynapoly move flags
* Use `DYNAPOLYMOVE_UPD_` more
* remove `DynaPolyActor.unk_15A` (padding)
* `DYNAPOLYMOVE_UPD_` -> `DYNA_MOVE_`
* Remove `DYNA_MOVE_POS_AND_ROT_Y`
* Actual docs
* Update function names
* transformFlags and Carried names
Co-authored-by: fig02 <fig02srl@gmail.com>
Co-authored-by: EllipticEllipsis <elliptic.ellipsis@gmail.com>
* Fixup comment on `DynaPolyActor_UpdateCarriedActorPos`
* Format
* `DYNA_TRANSFORM_NONE` -> 0
* Touch up mentioning the `DYNA_TRANSFORM_` flags in docs
Co-authored-by: fig02 <fig02srl@gmail.com>
Co-authored-by: EllipticEllipsis <elliptic.ellipsis@gmail.com>
Diffstat (limited to 'src/code/z_actor.c')
| -rw-r--r-- | src/code/z_actor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/z_actor.c b/src/code/z_actor.c index 738fff1fb..ef5748d59 100644 --- a/src/code/z_actor.c +++ b/src/code/z_actor.c @@ -1238,7 +1238,7 @@ void Actor_UpdateBgCheckInfo(PlayState* play, Actor* actor, f32 wallCheckHeight, sp74 = actor->world.pos.y - actor->prevPos.y; if ((actor->floorBgId != BGCHECK_SCENE) && (actor->bgCheckFlags & BGCHECKFLAG_GROUND)) { - func_800433A4(&play->colCtx, actor->floorBgId, actor); + DynaPolyActor_TransformCarriedActor(&play->colCtx, actor->floorBgId, actor); } if (flags & UPDBGCHECKINFO_FLAG_0) { |
