From a9b008c1e0906ab43757217b1fcdde3020d12df8 Mon Sep 17 00:00:00 2001 From: Torin Date: Sat, 25 Nov 2023 08:53:08 -0600 Subject: [PATCH] fix missing arg for CreateDsMap --- dll/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dll/main.cpp b/dll/main.cpp index 2038245..11a7a35 100644 --- a/dll/main.cpp +++ b/dll/main.cpp @@ -28,7 +28,7 @@ GMEXPORT void YYExtensionInitialise(const struct YYRunnerInterface* _pFunctions, GMFUNC(__imgui_initialize) { g_pHandle = YYGetPtr(arg, 0); - g_KeepAlive = CreateDsMap(0); + g_KeepAlive = CreateDsMap(0, 0); g_ImGuiContext = (ImGuiContext*)YYGetPtr(arg, 1); double buffer_size = YYGetReal(arg, 2); g_ImGuiInitialized = true;