mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
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:
parent
c29324b5dc
commit
b7fafa6b65
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user