From 88ccb0e0752219d90252c6e1b09eb4f8b031efa6 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Wed, 10 Sep 2025 19:44:46 +0200 Subject: [PATCH] fix: Plugin features display not working correctly --- lib/libimhex/include/hex/plugin.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libimhex/include/hex/plugin.hpp b/lib/libimhex/include/hex/plugin.hpp index 5c30650be..208d9cdbe 100644 --- a/lib/libimhex/include/hex/plugin.hpp +++ b/lib/libimhex/include/hex/plugin.hpp @@ -46,7 +46,7 @@ void* PluginSubCommandsFunctionHelper::getSubCommands() { [[maybe_unused]] static auto& getFeaturesImpl() { static hex::AutoReset> features; - return features; + return *features; } #if defined (IMHEX_STATIC_LINK_PLUGINS)