fixed types

This commit is contained in:
Nikolay Korolev 2019-06-22 21:42:26 +03:00
parent 49523b1c03
commit 057938fc6f

View File

@ -12,39 +12,39 @@
struct CAddressInReplayBuffer struct CAddressInReplayBuffer
{ {
unsigned int m_nOffset; uint32 m_nOffset;
uint8 *m_pBase; uint8 *m_pBase;
uint8 m_bSlot; uint8 m_bSlot;
}; };
struct CStoredAnimationState struct CStoredAnimationState
{ {
char animId; int8 animId;
char time; int8 time;
char speed; int8 speed;
char secAnimId; int8 secAnimId;
char secTime; int8 secTime;
char secSpeed; int8 secSpeed;
char blendAmount; int8 blendAmount;
char partAnimId; int8 partAnimId;
char partAnimTime; int8 partAnimTime;
char partAnimSpeed; int8 partAnimSpeed;
char partBlendAmount; int8 partBlendAmount;
}; };
struct CStoredDetailedAnimationState struct CStoredDetailedAnimationState
{ {
char m_abAnimId[3]; int8 m_abAnimId[3];
char m_abCurTime[3]; int8 m_abCurTime[3];
char m_abSpeed[3]; int8 m_abSpeed[3];
char m_abBlendAmount[3]; int8 m_abBlendAmount[3];
char m_abFunctionCallbackID[3]; int8 m_abFunctionCallbackID[3];
int16 m_awFlags[3]; int16 m_awFlags[3];
char m_abAnimId2[6]; int8 m_abAnimId2[6];
char m_abCurTime2[6]; int8 m_abCurTime2[6];
char m_abSpeed2[6]; int8 m_abSpeed2[6];
char m_abBlendAmount2[6]; int8 m_abBlendAmount2[6];
char m_abFunctionCallbackID2[6]; int8 m_abFunctionCallbackID2[6];
int16 m_awFlags2[6]; int16 m_awFlags2[6];
}; };