From 457732775bfa7b89ac6a67c336eea48d1ee31355 Mon Sep 17 00:00:00 2001 From: David Markowitz <39972741+EmosewaMC@users.noreply.github.com> Date: Tue, 18 Nov 2025 12:59:28 -0800 Subject: [PATCH] fix: uninitialized memory --- 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 }; };