Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scrNativeCallContext #171

Merged
merged 8 commits into from
May 18, 2024
5 changes: 3 additions & 2 deletions script/scrNativeHandler.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@ namespace rage
std::uint32_t m_arg_count;
void* m_args;
std::int32_t m_data_count;
std::uint32_t m_data[48];
rage::scrValue* m_orig[4];
rage::fvector4 m_buffer[4];
};
static_assert(sizeof(scrNativeCallContext) == 0xE0);
static_assert(sizeof(scrNativeCallContext) == 0x80);

using scrNativeHash = std::uint64_t;
using scrNativePair = std::pair<scrNativeHash, scrNativeHash>;
Expand Down
Loading