From 31d0bca2da9f31425b98f0838c24a78eaf181d6c Mon Sep 17 00:00:00 2001 From: Collecting Date: Fri, 16 Jan 2026 09:13:45 +0000 Subject: [PATCH] fix: Cross-Platform Compiler Errors Signed-off-by: Collecting --- src/core/file_sys/patch_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/file_sys/patch_manager.cpp b/src/core/file_sys/patch_manager.cpp index 3403669bc..4c7700d8e 100644 --- a/src/core/file_sys/patch_manager.cpp +++ b/src/core/file_sys/patch_manager.cpp @@ -761,7 +761,7 @@ std::vector PatchManager::GetPatches(VirtualFile update_raw) const { if (!top_mod) continue; // Helper lambda to process a directory and return the patch types found - auto get_mod_types = [this](const VirtualDir& dir) -> std::string { + auto get_mod_types = [](const VirtualDir& dir) -> std::string { std::string types; const auto exefs_dir = FindSubdirectoryCaseless(dir, "exefs"); if (IsDirValidAndNonEmpty(exefs_dir)) {