diff options
| author | Paul Joannon | 2018-03-02 13:38:29 +0100 |
|---|---|---|
| committer | Hein-Pieter van Braam | 2018-04-29 13:54:16 +0200 |
| commit | 486f4d27690430da4b9c795e763671246b2915b4 (patch) | |
| tree | 576d19e0d543d5739d63120c7094132671629594 /modules | |
| parent | 199a54d5acd13636e714cf98a9c69915e9e96726 (diff) | |
| download | godot-486f4d27690430da4b9c795e763671246b2915b4.tar.gz godot-486f4d27690430da4b9c795e763671246b2915b4.tar.zst godot-486f4d27690430da4b9c795e763671246b2915b4.zip | |
[mono] add the 'Facades' subfolder to the searched directories in _preload_hook
(cherry picked from commit 22606a7becdbfcd88fd30e160eef90c183035e5c)
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/mono/mono_gd/gd_mono_assembly.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/mono/mono_gd/gd_mono_assembly.cpp b/modules/mono/mono_gd/gd_mono_assembly.cpp index 5982d2da1..d062d56dc 100644 --- a/modules/mono/mono_gd/gd_mono_assembly.cpp +++ b/modules/mono/mono_gd/gd_mono_assembly.cpp @@ -126,6 +126,7 @@ MonoAssembly *GDMonoAssembly::_preload_hook(MonoAssemblyName *aname, char **asse const char *rootdir = mono_assembly_getrootdir(); if (rootdir) { search_dirs.push_back(String(rootdir).plus_file("mono").plus_file("4.5")); + search_dirs.push_back(String(rootdir).plus_file("mono").plus_file("4.5").plus_file("Facades")); } if (assemblies_path) { |
