mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
Converted m_rockstar_id to a signed int. (#168)
This commit is contained in:
parent
b8c4598ef8
commit
9c51660b0f
@ -16,13 +16,13 @@ namespace rage
|
||||
class rlGamerHandle
|
||||
{
|
||||
public:
|
||||
uint64_t m_rockstar_id; //0x0000
|
||||
int64_t m_rockstar_id; //0x0000
|
||||
uint8_t m_platform; //0x0008
|
||||
uint8_t m_padding; //0x0009
|
||||
|
||||
inline rlGamerHandle() = default;
|
||||
|
||||
inline rlGamerHandle(uint64_t rockstar_id) :
|
||||
inline rlGamerHandle(int64_t rockstar_id) :
|
||||
m_rockstar_id(rockstar_id),
|
||||
m_platform(rlPlatforms::PC),
|
||||
m_padding(0)
|
||||
|
Loading…
Reference in New Issue
Block a user