From affbc971714d7742d1575dd3895f1f59742b6be9 Mon Sep 17 00:00:00 2001 From: Matthew Date: Tue, 7 Mar 2023 00:21:07 +0000 Subject: [PATCH] Globals::moduleName fix Sometimes this cant be read for some reason but changing it from static to inline seems to fix things. --- memcury.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memcury.h b/memcury.h index 82d56ef..d4b3d54 100644 --- a/memcury.h +++ b/memcury.h @@ -232,7 +232,7 @@ namespace Memcury { constexpr const bool bLogging = true; - static const char* moduleName = nullptr; + inline const char* moduleName = nullptr; } namespace ASM