summaryrefslogtreecommitdiff
path: root/src/code/sys_matrix.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/sys_matrix.c
parent924d8e81b9ec84145ef2910d1566ea1b2dc16bdb (diff)
Rename gMtx(F)Clear to gIdentityMtx(F) (#2458)
Diffstat (limited to 'src/code/sys_matrix.c')
-rw-r--r--src/code/sys_matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/sys_matrix.c b/src/code/sys_matrix.c
index 19db7799e..9e56d4088 100644
--- a/src/code/sys_matrix.c
+++ b/src/code/sys_matrix.c
@@ -4,14 +4,14 @@
#endif
// clang-format off
-Mtx gMtxClear = gdSPDefMtx(
+Mtx gIdentityMtx = gdSPDefMtx(
1.0f, 0.0f, 0.0f, 0.0f,
0.0f, 1.0f, 0.0f, 0.0f,
0.0f, 0.0f, 1.0f, 0.0f,
0.0f, 0.0f, 0.0f, 1.0f
);
-MtxF gMtxFClear = {
+MtxF gIdentityMtxF = {
1.0f, 0.0f, 0.0f, 0.0f,
0.0f, 1.0f, 0.0f, 0.0f,
0.0f, 0.0f, 1.0f, 0.0f,