From 146cd9fe8cdcfe9afa0cfa9323eb6c7142d53ef7 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Tue, 18 Sep 2018 21:26:08 +0200 Subject: [PATCH] Change UINT64 to __int64 --- structs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/structs.h b/structs.h index 0b2062aab..1da28b356 100644 --- a/structs.h +++ b/structs.h @@ -213,15 +213,15 @@ struct PlayerStruct char _pSBkSplType; char _pSplLvl[64]; union { - UINT64 _pMemSpells64; + __int64 _pMemSpells64; int _pMemSpells[2]; }; union { - UINT64 _pAblSpells64; + __int64 _pAblSpells64; int _pAblSpells[2]; }; union { - UINT64 _pScrlSpells64; + __int64 _pScrlSpells64; int _pScrlSpells[2]; }; int _pSpellFlags; @@ -322,7 +322,7 @@ struct PlayerStruct int _pIBonusAC; int _pIBonusDamMod; union { - UINT64 _pISpells64; + __int64 _pISpells64; int _pISpells[2]; }; int _pIFlags;