diff options
author | Karroffel <therzog@mail.de> | 2017-10-14 15:42:10 +0200 |
---|---|---|
committer | Karroffel <therzog@mail.de> | 2017-10-14 15:50:55 +0200 |
commit | e568f80e6ee61407dfe7f403f123679ec55b1e53 (patch) | |
tree | ab40bc64dac71bbf3179d85704a0507acf509c6f /modules/gdnative/include | |
parent | e82a3f0168de499c86a62a4b8699da2b18e95195 (diff) |
[GDNative] removed native_raw_call
Diffstat (limited to 'modules/gdnative/include')
-rw-r--r-- | modules/gdnative/include/gdnative/gdnative.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/include/gdnative/gdnative.h b/modules/gdnative/include/gdnative/gdnative.h index 2d8726e5db..2d1ad90feb 100644 --- a/modules/gdnative/include/gdnative/gdnative.h +++ b/modules/gdnative/include/gdnative/gdnative.h @@ -255,7 +255,7 @@ godot_dictionary GDAPI godot_get_global_constants(); ////// GDNative procedure types typedef void (*godot_gdnative_init_fn)(godot_gdnative_init_options *); typedef void (*godot_gdnative_terminate_fn)(godot_gdnative_terminate_options *); -typedef godot_variant (*godot_gdnative_procedure_fn)(void *, godot_array *); +typedef godot_variant (*godot_gdnative_procedure_fn)(godot_array *); ////// System Functions |