diff options
author | Mads Ynddal <mads-git@ynddal.dk> | 2018-10-21 21:55:30 +0200 |
---|---|---|
committer | Mads Ynddal <mads-git@ynddal.dk> | 2018-10-21 21:55:30 +0200 |
commit | 16c0c037c8aad61b1854d7b3b7778e90612e82a0 (patch) | |
tree | a93d8df6e35fa3da3f2156a0cd645311e076f898 | |
parent | 81c2ed61f64e1f9d5247293b307690bd312f1be1 (diff) |
Removed undeclared and unused variable, which caused a compile error
-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; |