summaryrefslogtreecommitdiffstats
path: root/modules/mono/editor
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2024-08-28 20:12:09 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2024-08-28 20:12:09 +0300
commitd528f28275b4fb8753e0344a331c89f9c81c5a47 (patch)
tree8e28e043a5c461579eb7d05f9badedda8251fab9 /modules/mono/editor
parentf648de1a83cf006dbfdaa075219ad4348628e58f (diff)
downloadredot-engine-d528f28275b4fb8753e0344a331c89f9c81c5a47.tar.gz
[Windows] Fix OS.open_dynamic_library
Diffstat (limited to 'modules/mono/editor')
-rw-r--r--modules/mono/editor/hostfxr_resolver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/hostfxr_resolver.cpp b/modules/mono/editor/hostfxr_resolver.cpp
index 7fa482969e..e93c9a5faf 100644
--- a/modules/mono/editor/hostfxr_resolver.cpp
+++ b/modules/mono/editor/hostfxr_resolver.cpp
@@ -260,7 +260,7 @@ bool get_dotnet_self_registered_dir(String &r_dotnet_root) {
return false;
}
- r_dotnet_root = String::utf16((const char16_t *)buffer.ptr());
+ r_dotnet_root = String::utf16((const char16_t *)buffer.ptr()).replace("\\", "/");
RegCloseKey(hkey);
return true;
#else