Fix VGui crash on S2 builds

Fix crash caused in threading code; attempting to call a callback function. The callback ptr was assigned to uninitialized memory. Manual debugging revealed 'CEngineVGui::RenderStart' (semantic name) was causing the crash. Further research revealed that both 'CEngineVGui_RenderStart' and 'CEngineVGui::RenderEnd' weren't even necessary to draw the VGui debug overlays. These have been removed.
This commit is contained in:
Kawe Mazidjatari 2023-03-15 01:13:51 +01:00
parent 220c65a6e2
commit 49310426fc

View File

@ -21,9 +21,7 @@ int CEngineVGui::Paint(CEngineVGui* thisptr, PaintMode_t mode)
if (/*mode == PaintMode_t::PAINT_UIPANELS ||*/ mode == PaintMode_t::PAINT_INGAMEPANELS) // Render in-main menu and in-game.
{
CEngineVGui_RenderStart(g_pVGuiSurface);
g_pOverlay->Update();
CEngineVGui_RenderEnd();
}
return result;