From ea86a708e469d79354220ffe2355f3dca02f9b49 Mon Sep 17 00:00:00 2001 From: David Markowitz <39972741+EmosewaMC@users.noreply.github.com> Date: Tue, 18 Nov 2025 19:06:03 -0800 Subject: [PATCH] fix: uninitialized memory (#1937) --- dGame/dComponents/GhostComponent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dGame/dComponents/GhostComponent.h b/dGame/dComponents/GhostComponent.h index 01443c1b..8ea05397 100644 --- a/dGame/dComponents/GhostComponent.h +++ b/dGame/dComponents/GhostComponent.h @@ -63,7 +63,7 @@ private: bool m_GhostOverride; - bool m_IsGMInvisible; + bool m_IsGMInvisible{ false }; };