diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-08-28 20:12:09 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2024-08-28 20:12:09 +0300 |
commit | d528f28275b4fb8753e0344a331c89f9c81c5a47 (patch) | |
tree | 8e28e043a5c461579eb7d05f9badedda8251fab9 /modules/mono/editor | |
parent | f648de1a83cf006dbfdaa075219ad4348628e58f (diff) | |
download | redot-engine-d528f28275b4fb8753e0344a331c89f9c81c5a47.tar.gz |
[Windows] Fix OS.open_dynamic_library
Diffstat (limited to 'modules/mono/editor')
-rw-r--r-- | modules/mono/editor/hostfxr_resolver.cpp | 2 |
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 |