Skip to content

Commit

Permalink
Fix _pythonscript_deinitialize
Browse files Browse the repository at this point in the history
  • Loading branch information
touilleMan committed Dec 27, 2023
1 parent a2e27f4 commit 629fda5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/_pythonscript.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ cdef api void _pythonscript_deinitialize(int p_level) noexcept with gil:
print("Failed to unregister Python from Godot: failed to retreive `Engine::unregister_script_language`", flush=True)
return

args = [_pythons_script_language._gd_ptr]
args = [&_pythons_script_language._gd_ptr]
pythonscript_gdextension.object_method_bind_ptrcall(
bind,
singleton,
Expand Down

0 comments on commit 629fda5

Please sign in to comment.