From 41083a732442b4c3deca676c979206a1d464242c Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Thu, 22 Sep 2022 17:13:05 +0200 Subject: [PATCH] Revert typedef --- r5dev/squirrel/sqscript.cpp | 2 +- r5dev/squirrel/sqscript.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/r5dev/squirrel/sqscript.cpp b/r5dev/squirrel/sqscript.cpp index e492286e..b151d774 100644 --- a/r5dev/squirrel/sqscript.cpp +++ b/r5dev/squirrel/sqscript.cpp @@ -21,7 +21,7 @@ // *functor - //--------------------------------------------------------------------------------- SQRESULT Script_RegisterFunction(CSquirrelVM* s, const SQChar* scriptname, const SQChar* nativename, - const SQChar* helpstring, const SQChar* returntype, const SQChar* parameters, SQFunctor* functor) + const SQChar* helpstring, const SQChar* returntype, const SQChar* parameters, void* functor) { ScriptFunctionBinding_t* binding = MemAllocSingleton()->Alloc(sizeof(ScriptFunctionBinding_t)); memset(binding, '\0', sizeof(ScriptFunctionBinding_t)); diff --git a/r5dev/squirrel/sqscript.h b/r5dev/squirrel/sqscript.h index 3204522f..773d0637 100644 --- a/r5dev/squirrel/sqscript.h +++ b/r5dev/squirrel/sqscript.h @@ -20,7 +20,7 @@ struct ScriptFunctionBinding_t std::int64_t unk50; // 50 std::int32_t unk58; // 58 std::int32_t padding3; // 5C - SQFunctor* _functor; // 60 + void* _functor; // 60 ScriptFunctionBinding_t() {