temporary modsystem fix

this is a temporary fix for the incorrect g_pAlignedMemAlloc behaviour
g_pAlignedMemAlloc is supposed to be a pointer to a struct of 2 functions, but it is a pointer to a class with a virtual function table, causing invalid function addresses
This causes an access violation on this call
This should be fixed properly in the future
This commit is contained in:
rexx 2023-05-08 19:15:53 +01:00
parent c29324b5dc
commit b7fafa6b65

View File

@ -193,7 +193,7 @@ void CSquirrelVM::CompileModScripts()
if (rson)
{
RSON_Free(rson, g_pAlignedMemAlloc);
g_pAlignedMemAlloc->Free(rson);
//g_pAlignedMemAlloc->Free(rson); // TODO: fix g_pAlignedMemAlloc and free this properly
}
}
}