aboutsummaryrefslogtreecommitdiff
path: root/modules/mono/editor/monodevelop_instance.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2018-01-04 21:50:04 +0100
committerGitHub2018-01-04 21:50:04 +0100
commit0f8ac21592dd2569bf03c97b9d7744ff51be6342 (patch)
treeb875ba769871e5ac38ff1646f5f19a8c767a4fed /modules/mono/editor/monodevelop_instance.cpp
parentdb3f87d49171024cce3757c102db7de55b5b2c8c (diff)
parent119a910bc6b7472f014773997bc036a461b44a38 (diff)
downloadgodot-0f8ac21592dd2569bf03c97b9d7744ff51be6342.tar.gz
godot-0f8ac21592dd2569bf03c97b9d7744ff51be6342.tar.zst
godot-0f8ac21592dd2569bf03c97b9d7744ff51be6342.zip
Merge pull request #15346 from neikeq/properties-are-overrated
Mono: Add properties support in scripts
Diffstat (limited to '')
-rw-r--r--modules/mono/editor/monodevelop_instance.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/monodevelop_instance.cpp b/modules/mono/editor/monodevelop_instance.cpp
index 57b3382bf..8dc308b11 100644
--- a/modules/mono/editor/monodevelop_instance.cpp
+++ b/modules/mono/editor/monodevelop_instance.cpp
@@ -62,7 +62,7 @@ MonoDevelopInstance::MonoDevelopInstance(const String &p_solution) {
GDMonoClass *klass = GDMono::get_singleton()->get_editor_tools_assembly()->get_class("GodotSharpTools.Editor", "MonoDevelopInstance");
- MonoObject *obj = mono_object_new(TOOLS_DOMAIN, klass->get_raw());
+ MonoObject *obj = mono_object_new(TOOLS_DOMAIN, klass->get_mono_ptr());
GDMonoMethod *ctor = klass->get_method(".ctor", 1);
MonoObject *ex = NULL;