summaryrefslogtreecommitdiff
path: root/src/code/z_actor.c
diff options
context:
space:
mode:
authormzxrules <mzxrules@gmail.com>2025-02-08 19:00:32 -0500
committerGitHub <noreply@github.com>2025-02-08 19:00:32 -0500
commit03a26122463a80e2db8fb42aa837b0d0dc7cd194 (patch)
treecdf112d6598a9b3a238eef0b42a8ce1587c4be8c /src/code/z_actor.c
parent924d8e81b9ec84145ef2910d1566ea1b2dc16bdb (diff)
Rename gMtx(F)Clear to gIdentityMtx(F) (#2458)
Diffstat (limited to 'src/code/z_actor.c')
-rw-r--r--src/code/z_actor.c4
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++) {