diff options
| author | mzxrules <mzxrules@gmail.com> | 2025-02-08 19:00:32 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-08 19:00:32 -0500 |
| commit | 03a26122463a80e2db8fb42aa837b0d0dc7cd194 (patch) | |
| tree | cdf112d6598a9b3a238eef0b42a8ce1587c4be8c /src/code/z_actor.c | |
| parent | 924d8e81b9ec84145ef2910d1566ea1b2dc16bdb (diff) | |
Rename gMtx(F)Clear to gIdentityMtx(F) (#2458)
Diffstat (limited to 'src/code/z_actor.c')
| -rw-r--r-- | src/code/z_actor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/z_actor.c b/src/code/z_actor.c index f59a996e6..f13360af6 100644 --- a/src/code/z_actor.c +++ b/src/code/z_actor.c @@ -2314,8 +2314,8 @@ void Actor_InitContext(PlayState* play, ActorContext* actorCtx, ActorEntry* play bzero(actorCtx, sizeof(ActorContext)); ActorOverlayTable_Init(); - Matrix_MtxFCopy(&play->billboardMtxF, &gMtxFClear); - Matrix_MtxFCopy(&play->viewProjectionMtxF, &gMtxFClear); + Matrix_MtxFCopy(&play->billboardMtxF, &gIdentityMtxF); + Matrix_MtxFCopy(&play->viewProjectionMtxF, &gIdentityMtxF); overlayEntry = &gActorOverlayTable[0]; for (i = 0; i < ARRAY_COUNT(gActorOverlayTable); i++) { |
