From c842f7be8bf6e02a24c6e3e6c88aa2b4ab57e2ab Mon Sep 17 00:00:00 2001 From: Amos Date: Fri, 9 Jul 2021 11:49:44 -0700 Subject: [PATCH] Forgot to add init call for setting globals --- r5dev/src/dllmain.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/r5dev/src/dllmain.cpp b/r5dev/src/dllmain.cpp index 643f05e7..2f9331b1 100644 --- a/r5dev/src/dllmain.cpp +++ b/r5dev/src/dllmain.cpp @@ -20,6 +20,7 @@ void InitializeR5Dev() InstallIPHooks(); InstallDXHooks(); InstallOpcodes(); + InstallGlobals(); SetupDXSwapChain(); printf("+-----------------------------------------------------------------------------+\n"); printf("| R5 DEV -- INITIALIZED ------------------------------------------------- |\n");