From 1f3bdca87765dcd9fe24860d051c8cddb6853735 Mon Sep 17 00:00:00 2001 From: Relintai Date: Wed, 31 May 2023 13:49:14 +0200 Subject: [PATCH] Fix typo. --- include/core/GodotGlobal.hpp | 2 +- src/core/GodotGlobal.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/core/GodotGlobal.hpp b/include/core/GodotGlobal.hpp index 2ba3e3d..9213db8 100644 --- a/include/core/GodotGlobal.hpp +++ b/include/core/GodotGlobal.hpp @@ -37,7 +37,7 @@ namespace godot { -extern "C" const pandemonium_gdnative_api_struct *api; +extern "C" const pandemonium_gdnative_core_api_struct *api; extern "C" const pandemonium_gdnative_ext_nativescript_api_struct *nativescript_api; extern "C" const pandemonium_gdnative_ext_pluginscript_api_struct *pluginscript_api; diff --git a/src/core/GodotGlobal.cpp b/src/core/GodotGlobal.cpp index b9b7a52..9eaeccb 100644 --- a/src/core/GodotGlobal.cpp +++ b/src/core/GodotGlobal.cpp @@ -55,7 +55,7 @@ namespace godot { void *_RegisterState::nativescript_handle; int _RegisterState::language_index; -const pandemonium_gdnative_api_struct *api = nullptr; +const pandemonium_gdnative_core_api_struct *api = nullptr; const pandemonium_gdnative_ext_nativescript_api_struct *nativescript_api = nullptr; const pandemonium_gdnative_ext_pluginscript_api_struct *pluginscript_api = nullptr;