From 6fc73a16f7d9b4c8310094ca0debdeea1d22edaa Mon Sep 17 00:00:00 2001 From: tupoy-ya <72797377+tupoy-ya@users.noreply.github.com> Date: Sun, 3 Sep 2023 23:25:35 +0500 Subject: [PATCH] fix(scrNativeHash): Make `scrNativeHash` `uint64_t` (#135) --- script/scrNativeHandler.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/scrNativeHandler.hpp b/script/scrNativeHandler.hpp index ddf1980..f3ba6a7 100644 --- a/script/scrNativeHandler.hpp +++ b/script/scrNativeHandler.hpp @@ -55,7 +55,7 @@ namespace rage }; static_assert(sizeof(scrNativeCallContext) == 0xE0); - using scrNativeHash = std::int64_t; + using scrNativeHash = std::uint64_t; using scrNativePair = std::pair; using scrNativeHandler = void(*)(scrNativeCallContext*); -} \ No newline at end of file +}