Skip to content

Commit

Permalink
Fix warning about incompatible pointer type in src/_pythonscript.pyx
Browse files Browse the repository at this point in the history
  • Loading branch information
touilleMan committed Aug 10, 2024
1 parent e005050 commit 449c827
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/_pythonscript.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ cdef api void _pythonscript_late_init() noexcept with gil:
global _pythons_script_language
cdef GDExtensionObjectPtr singleton
cdef GDExtensionMethodBindPtr bind
cdef GDExtensionTypePtr[1] args
cdef GDExtensionConstTypePtr[1] args
cdef StringName gdname_engine
cdef StringName gdname_register_script_language
cdef gd_int_t ret
Expand Down Expand Up @@ -230,7 +230,7 @@ cdef api void _pythonscript_deinitialize(int p_level) noexcept with gil:

cdef GDExtensionObjectPtr singleton
cdef GDExtensionMethodBindPtr bind
cdef GDExtensionTypePtr[1] args
cdef GDExtensionConstTypePtr[1] args
cdef StringName gdname_engine
cdef StringName gdname_register_script_language
cdef gd_int_t ret
Expand Down

0 comments on commit 449c827

Please sign in to comment.