diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-10-22 08:36:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-22 08:36:15 +0200 |
commit | 955a913a1fcc7551a3e03017eb2ac8edc4ee7043 (patch) | |
tree | f35589c341480bcd94ea9c0b7e83752fae63ba86 /modules | |
parent | c487cce6d0af608173508b10d4d3a37f8f0a9907 (diff) | |
parent | 16c0c037c8aad61b1854d7b3b7778e90612e82a0 (diff) |
Merge pull request #23204 from Baekalfen/master
Removed undeclared and unused variable, which caused a compile error
Diffstat (limited to 'modules')
-rw-r--r-- | modules/mono/mono_gd/gd_mono.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/mono/mono_gd/gd_mono.cpp b/modules/mono/mono_gd/gd_mono.cpp index 0c4433112d..4d88cca6f1 100644 --- a/modules/mono/mono_gd/gd_mono.cpp +++ b/modules/mono/mono_gd/gd_mono.cpp @@ -191,7 +191,6 @@ void GDMono::initialize() { String hint_config_dir = path_join(locations[i], "etc"); if (FileAccess::exists(hint_mscorlib_path) && DirAccess::exists(hint_config_dir)) { - need_set_mono_dirs = false; assembly_rootdir = hint_assembly_rootdir; config_dir = hint_config_dir; break; |