diff options
author | Paul Joannon <hello@pauljoannon.com> | 2018-03-02 13:38:29 +0100 |
---|---|---|
committer | Paul Joannon <hello@pauljoannon.com> | 2018-03-02 13:38:29 +0100 |
commit | 22606a7becdbfcd88fd30e160eef90c183035e5c (patch) | |
tree | e359d1291d7224eac67f2735829aa4fa704e984b | |
parent | 4ccc8e57f98024b913bafbf290b4093658674e68 (diff) |
[mono] add the 'Facades' subfolder to the searched directories in _preload_hook
-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 2ce1b0a9df..52ae2d51e1 100644 --- a/modules/mono/mono_gd/gd_mono_assembly.cpp +++ b/modules/mono/mono_gd/gd_mono_assembly.cpp @@ -123,6 +123,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) { |