From 5c2c5709e59757ebd0e83204af77f79cbb0fc459 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Mon, 18 Apr 2022 03:35:24 +0200 Subject: [PATCH] Update gl_screen.cpp --- r5dev/engine/gl_screen.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/r5dev/engine/gl_screen.cpp b/r5dev/engine/gl_screen.cpp index bfc3485f..027e44a3 100644 --- a/r5dev/engine/gl_screen.cpp +++ b/r5dev/engine/gl_screen.cpp @@ -18,12 +18,10 @@ void SCR_EndLoadingPlaque(void) if (*scr_drawloading) { *scr_engineevent_loadingstarted = 0; - using HideLoadingPlaqueFn = void(*)(void*); - (*reinterpret_cast(g_pEngineVGui))[36](g_pEngineVGui); // (*((void(__fastcall**)(void**))g_CEngineVGui + 36))(&g_CEngineVGui);// HideLoadingPlaque + g_pEngineVGui->HideLoadingPlaque(); } else if (*gfExtendedError) { - using ShowErrorMessageFn = void(*)(void*); - (*reinterpret_cast(g_pEngineVGui))[35](g_pEngineVGui); // (*((void(__fastcall**)(void**))g_CEngineVGui + 35))(&g_CEngineVGui);// ShowErrorMessage + g_pEngineVGui->ShowErrorMessage(); } }