summaryrefslogtreecommitdiff
path: root/plugins/efi_resolver
diff options
context:
space:
mode:
authorMichael Krasnitski <michael.krasnitski@gmail.com>2025-06-04 11:54:39 -0400
committerBrandon Miller <bkmiller89@icloud.com>2025-06-05 11:49:00 -0400
commitfac7ba859ddf0067e42254177e77a5544ad9e260 (patch)
tree920458da9c87aeb970840940a758156ef894434c /plugins/efi_resolver
parent3e7c1b6a41c666f227237d5751b29d3538aa68b3 (diff)
Fix incorrect paths in EFI Resolver
Diffstat (limited to 'plugins/efi_resolver')
-rw-r--r--plugins/efi_resolver/src/Resolver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/efi_resolver/src/Resolver.cpp b/plugins/efi_resolver/src/Resolver.cpp
index 36fa190b..5796b0e0 100644
--- a/plugins/efi_resolver/src/Resolver.cpp
+++ b/plugins/efi_resolver/src/Resolver.cpp
@@ -44,11 +44,11 @@ static string GetBundledEfiPath()
{
string path = GetBundledPluginDirectory();
#if defined(_WIN32)
- return path + "..\\types\\efi.c";
+ return path + "\\..\\types\\efi.c";
#elif defined(__APPLE__)
return path + "/../../Resources/types/efi.c";
#else
- return path + "../types/efi.c";
+ return path + "/../types/efi.c";
#endif
}