From e6e7f73d7614fe59cd6ea238272d39d5192bd006 Mon Sep 17 00:00:00 2001 From: Lioncache Date: Sat, 21 Feb 2026 14:43:31 -0500 Subject: [PATCH] CMatrix4f: Remove unnecessary zeroing in constructor --- Source/Common/Math/CMatrix4f.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/Common/Math/CMatrix4f.h b/Source/Common/Math/CMatrix4f.h index b2061d9..915591e 100644 --- a/Source/Common/Math/CMatrix4f.h +++ b/Source/Common/Math/CMatrix4f.h @@ -23,7 +23,6 @@ public: constexpr explicit CMatrix4f(float Diagonal) { - m = {}; m[0][0] = Diagonal; m[1][1] = Diagonal; m[2][2] = Diagonal;