diff options
author | Max Hilbrunner <m.hilbrunner@gmail.com> | 2021-08-13 16:46:14 +0200 |
---|---|---|
committer | Max Hilbrunner <m.hilbrunner@gmail.com> | 2021-08-17 16:10:09 +0200 |
commit | 81f7d1890baf0481f65100aa0efa875da0a0fa30 (patch) | |
tree | b9865fbd4e23b5576244254809ab390aafba0687 /modules/mono/editor | |
parent | 3d673fac50e385e79112ad44ac5887875c5e1459 (diff) |
Namespaces instead of underscore prefix for binds
Thanks to neikeq for the initial work.
Co-authored-by: Ignacio Roldán Etcheverry <neikeq@users.noreply.github.com>
Diffstat (limited to 'modules/mono/editor')
-rw-r--r-- | modules/mono/editor/editor_internal_calls.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/editor_internal_calls.cpp b/modules/mono/editor/editor_internal_calls.cpp index 8164f459ca..6692a6efec 100644 --- a/modules/mono/editor/editor_internal_calls.cpp +++ b/modules/mono/editor/editor_internal_calls.cpp @@ -241,7 +241,7 @@ MonoBoolean godot_icall_Internal_IsAssembliesReloadingNeeded() { void godot_icall_Internal_ReloadAssemblies(MonoBoolean p_soft_reload) { #ifdef GD_MONO_HOT_RELOAD - _GodotSharp::get_singleton()->call_deferred(SNAME("_reload_assemblies"), (bool)p_soft_reload); + mono_bind::GodotSharp::get_singleton()->call_deferred(SNAME("_reload_assemblies"), (bool)p_soft_reload); #endif } |