From c2303360807cdc9a364b5fdb845a80d54ec4286e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kerim=20=C4=8Camd=C5=BEi=C4=87?= Date: Wed, 4 Jun 2025 12:37:02 +0200 Subject: [PATCH] fix loading ui crash getting an non valid adress fro UText --- src/game/client/neo/ui/neo_loading.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/client/neo/ui/neo_loading.cpp b/src/game/client/neo/ui/neo_loading.cpp index 81c7de83d5..5c0a91f14d 100644 --- a/src/game/client/neo/ui/neo_loading.cpp +++ b/src/game/client/neo/ui/neo_loading.cpp @@ -209,7 +209,7 @@ void CNeoLoading::OnMainLoop(const NeoUI::Mode eMode) NeoUI::BeginSection(true); { NeoUI::Label(L"Press ESC to cancel"); - if (m_pLabelInfo) NeoUI::Label(m_pLabelInfo->GetTextImage()->GetUText()); + if (m_pLabelInfo) //NeoUI::Label(m_pLabelInfo->GetTextImage()->GetUText()); if (m_pProgressBarMain) NeoUI::Progress(m_pProgressBarMain->GetProgress(), 0.0f, 1.0f); } NeoUI::EndSection();