From a5c6ca592023fea7317c0c3fb54639036c66dd76 Mon Sep 17 00:00:00 2001 From: David Snopek Date: Mon, 24 Apr 2023 11:45:45 -0500 Subject: Update to load function pointers for GDExtension interface --- src/core/memory.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/core/memory.cpp') diff --git a/src/core/memory.cpp b/src/core/memory.cpp index 8feda57..17b0696 100644 --- a/src/core/memory.cpp +++ b/src/core/memory.cpp @@ -41,7 +41,7 @@ void *Memory::alloc_static(size_t p_bytes, bool p_pad_align) { bool prepad = p_pad_align; #endif - void *mem = internal::gde_interface->mem_alloc(p_bytes + (prepad ? PAD_ALIGN : 0)); + void *mem = internal::gdextension_interface_mem_alloc(p_bytes + (prepad ? PAD_ALIGN : 0)); ERR_FAIL_COND_V(!mem, nullptr); if (prepad) { @@ -70,11 +70,11 @@ void *Memory::realloc_static(void *p_memory, size_t p_bytes, bool p_pad_align) { if (prepad) { mem -= PAD_ALIGN; - mem = (uint8_t *)internal::gde_interface->mem_realloc(mem, p_bytes + PAD_ALIGN); + mem = (uint8_t *)internal::gdextension_interface_mem_realloc(mem, p_bytes + PAD_ALIGN); ERR_FAIL_COND_V(!mem, nullptr); return mem + PAD_ALIGN; } else { - return (uint8_t *)internal::gde_interface->mem_realloc(mem, p_bytes); + return (uint8_t *)internal::gdextension_interface_mem_realloc(mem, p_bytes); } } @@ -90,7 +90,7 @@ void Memory::free_static(void *p_ptr, bool p_pad_align) { if (prepad) { mem -= PAD_ALIGN; } - internal::gde_interface->mem_free(mem); + internal::gdextension_interface_mem_free(mem); } _GlobalNil::_GlobalNil() { -- cgit v1.2.3