diff options
author | Ignacio Roldán Etcheverry <ignalfonsore@gmail.com> | 2021-09-12 19:49:39 +0200 |
---|---|---|
committer | Ignacio Roldán Etcheverry <ignalfonsore@gmail.com> | 2022-08-22 03:35:59 +0200 |
commit | 9a51430441eecafbd07a7b9eb46967e2c3dd8b5d (patch) | |
tree | bf95b0249e028588a23e029216a22663ec9243a7 /modules/mono/csharp_script.cpp | |
parent | c4ccabd3fb81702820ff0943532c3d8a1f1d1c9d (diff) | |
download | redot-engine-9a51430441eecafbd07a7b9eb46967e2c3dd8b5d.tar.gz |
C#: Re-write Array, Dictionary, NodePath, String icalls as P/Invoke
Diffstat (limited to 'modules/mono/csharp_script.cpp')
-rw-r--r-- | modules/mono/csharp_script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index 2e6a6ef7e0..9520598f5c 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -109,7 +109,7 @@ Error CSharpLanguage::execute_file(const String &p_path) { return OK; } -extern void *godotsharp_pinvoke_funcs[101]; +extern void *godotsharp_pinvoke_funcs[138]; [[maybe_unused]] volatile void **do_not_strip_godotsharp_pinvoke_funcs; void CSharpLanguage::init() { |