fix(scrNativeHash): Make scrNativeHash uint64_t (#135)

This commit is contained in:
tupoy-ya 2023-09-03 23:25:35 +05:00 committed by GitHub
parent 0102dfcdcc
commit 6fc73a16f7

View File

@ -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<scrNativeHash, scrNativeHash>;
using scrNativeHandler = void(*)(scrNativeCallContext*);
}
}