diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-01-22 18:33:36 +0100 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-01-22 18:33:36 +0100 |
commit | bc8b61bb069a9229dbceb61fedb8308c5d1e6a68 (patch) | |
tree | dae493d525675a140754ce3b21f9310f8188bb16 /modules/mono/mono_gd/gd_mono.h | |
parent | 077e48977384a1b1c2e527e5df9012b64b56e847 (diff) | |
download | redot-engine-bc8b61bb069a9229dbceb61fedb8308c5d1e6a68.tar.gz |
Mono: Fix hot reload build errors and cleanup
Diffstat (limited to 'modules/mono/mono_gd/gd_mono.h')
-rw-r--r-- | modules/mono/mono_gd/gd_mono.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/mono/mono_gd/gd_mono.h b/modules/mono/mono_gd/gd_mono.h index 6a00b287b0..13de3061b3 100644 --- a/modules/mono/mono_gd/gd_mono.h +++ b/modules/mono/mono_gd/gd_mono.h @@ -95,7 +95,9 @@ class GDMono { #endif bool core_api_assembly_out_of_sync; +#ifdef TOOLS_ENABLED bool editor_api_assembly_out_of_sync; +#endif GDMonoAssembly *corlib_assembly; GDMonoAssembly *core_api_assembly; @@ -193,7 +195,7 @@ public: GDMonoClass *get_class(MonoClass *p_raw_class); -#ifdef TOOLS_ENABLED +#ifdef GD_MONO_HOT_RELOAD Error reload_scripts_domain(); #endif |