From 73db776d83d80d91f611bb90139db96ad75a2502 Mon Sep 17 00:00:00 2001 From: Fire Cube Date: Thu, 22 May 2025 20:20:00 +0200 Subject: [PATCH] fix compiler warning --- src/core/devtools/widget/module_list.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/devtools/widget/module_list.h b/src/core/devtools/widget/module_list.h index 0336b73c2..878039bee 100644 --- a/src/core/devtools/widget/module_list.h +++ b/src/core/devtools/widget/module_list.h @@ -21,7 +21,7 @@ public: void Draw(); bool open = false; - bool ModuleList::IsSystemModule(const std::filesystem::path& path) { + bool IsSystemModule(const std::filesystem::path& path) { const auto sys_modules_path = Common::FS::GetUserPath(Common::FS::PathType::SysModuleDir);