From 6f4d69a776c55e84a2ac5b7b987bc6c13f2025f6 Mon Sep 17 00:00:00 2001 From: rexx <67599507+r-ex@users.noreply.github.com> Date: Fri, 1 Jul 2022 22:52:55 +0100 Subject: [PATCH] fix crash from pixel's merge --- r5dev/vgui/vgui_debugpanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/vgui/vgui_debugpanel.cpp b/r5dev/vgui/vgui_debugpanel.cpp index 062bd7ed..7abaf2cf 100644 --- a/r5dev/vgui/vgui_debugpanel.cpp +++ b/r5dev/vgui/vgui_debugpanel.cpp @@ -182,7 +182,7 @@ void CLogSystem::DrawGPUStats(void) const void CLogSystem::DrawCrosshairMaterial(void) const { CMaterialGlue* material = GetMaterialAtCrossHair(); - if (material) + if (!material) return; static Color c = { 255, 255, 255, 255 };