From 4f2ed4ae754f27c906c6bef64f89b787587df143 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 10 Nov 2022 15:34:41 +0100 Subject: [PATCH] Rename 'g_pMatSystemSurfaceReference' to 'g_pVGuiSurface' --- r5dev/vgui/vgui_baseui_interface.cpp | 2 +- r5dev/vguimatsurface/MatSystemSurface.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/r5dev/vgui/vgui_baseui_interface.cpp b/r5dev/vgui/vgui_baseui_interface.cpp index 715db9fb..6493c5a5 100644 --- a/r5dev/vgui/vgui_baseui_interface.cpp +++ b/r5dev/vgui/vgui_baseui_interface.cpp @@ -21,7 +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_pMatSystemSurfaceReference); + CEngineVGui_RenderStart(g_pVGuiSurface); g_pOverlay->Update(); CEngineVGui_RenderEnd(); } diff --git a/r5dev/vguimatsurface/MatSystemSurface.h b/r5dev/vguimatsurface/MatSystemSurface.h index 1e4c0187..290c4180 100644 --- a/r5dev/vguimatsurface/MatSystemSurface.h +++ b/r5dev/vguimatsurface/MatSystemSurface.h @@ -10,7 +10,7 @@ class CMatSystemSurface }; inline CMatSystemSurface* g_pMatSystemSurface; -inline CMatSystemSurface* g_pMatSystemSurfaceReference; +inline CMatSystemSurface* g_pVGuiSurface; /////////////////////////////////////////////////////////////////////////////// class VMatSystemSurface : public IDetour @@ -19,7 +19,7 @@ class VMatSystemSurface : public IDetour { spdlog::debug("| FUN: CMatSystemSurface::DrawColoredText : {:#18x} |\n", p_CMatSystemSurface_DrawColoredText.GetPtr()); spdlog::debug("| VAR: g_pMatSystemSurface : {:#18x} |\n", reinterpret_cast(g_pMatSystemSurface)); - spdlog::debug("| VAR: g_pMatSystemSurfaceReference : {:#18x} |\n", reinterpret_cast(g_pMatSystemSurfaceReference)); + spdlog::debug("| VAR: g_pVGuiSurface : {:#18x} |\n", reinterpret_cast(g_pVGuiSurface)); spdlog::debug("+----------------------------------------------------------------+\n"); } virtual void GetFun(void) const @@ -38,7 +38,7 @@ class VMatSystemSurface : public IDetour "\x48\x83\xEC\x28\x48\x83\x3D\x00\x00\x00\x00\x00\x48\x8D\x05\x00\x00\x00\x00"), "xxxxxxx?????xxx????") .FindPatternSelf("48 83 3D", CMemory::Direction::DOWN, 40).ResolveRelativeAddressSelf(0x3, 0x8).RCast(); #endif - g_pMatSystemSurfaceReference = g_GameDll.FindPatternSIMD(reinterpret_cast( + g_pVGuiSurface = g_GameDll.FindPatternSIMD(reinterpret_cast( "\x48\x8B\x05\x00\x00\x00\x00\xC3\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\x48\x8B\x05\x00\x00\x00\x00\xC3\xCC\xCC\xCC\xCC\xCC\xCC\xCC\xCC\x8B\x81\x00\x00\x00\x00"), "xxx????xxxxxxxxxxxx????xxxxxxxxxxx????") .ResolveRelativeAddressSelf(0x3, 0x7).RCast(); }