From d4a2b617bd4c0cca184e991ae30488d80a8c75ce Mon Sep 17 00:00:00 2001 From: WerWolv Date: Tue, 23 Dec 2025 11:12:20 +0100 Subject: [PATCH] fix: Another MSVC build error --- lib/libimhex/source/api/project_file_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libimhex/source/api/project_file_manager.cpp b/lib/libimhex/source/api/project_file_manager.cpp index cb02c29ac..289d63842 100644 --- a/lib/libimhex/source/api/project_file_manager.cpp +++ b/lib/libimhex/source/api/project_file_manager.cpp @@ -44,7 +44,7 @@ namespace hex { } std::fs::path ProjectFile::getPath() { - return { s_currProjectPath }; + return *s_currProjectPath; } void ProjectFile::setPath(const std::fs::path &path) {