mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 10:39:00 +00:00
attempt to fix build error
This commit is contained in:
parent
3b4cf4f418
commit
4f9eff19b2
2 changed files with 3 additions and 11 deletions
|
@ -1,3 +1,3 @@
|
||||||
#include "BulletTraces.h"
|
#include "BulletTraces.h"
|
||||||
|
|
||||||
CBulletTrace (&CBulletTraces::aTraces)[16] = *(CBulletTrace(*)[16])0x72B1B8;
|
CBulletTrace (&CBulletTraces::aTraces)[16] = *(CBulletTrace(*)[16])*(uintptr*)0x72B1B8;
|
||||||
|
|
|
@ -34,8 +34,8 @@ CReference *&CReplay::pEmptyReferences = *(CReference**)0x8F256C;
|
||||||
CStoredDetailedAnimationState *&CReplay::pPedAnims = *(CStoredDetailedAnimationState**)0x8F6260;
|
CStoredDetailedAnimationState *&CReplay::pPedAnims = *(CStoredDetailedAnimationState**)0x8F6260;
|
||||||
CPickup *&CReplay::pPickups = *(CPickup**)0x8F1A48;
|
CPickup *&CReplay::pPickups = *(CPickup**)0x8F1A48;
|
||||||
CReference *&CReplay::pReferences = *(CReference**)0x880FAC;
|
CReference *&CReplay::pReferences = *(CReference**)0x880FAC;
|
||||||
uint8(&CReplay::BufferStatus)[8] = *(uint8(*)[8])0x8804D8;
|
uint8(&CReplay::BufferStatus)[8] = *(uint8(*)[8])*(uintptr*)0x8804D8;
|
||||||
uint8(&CReplay::Buffers)[8][100000] = *(uint8(*)[8][100000])0x779958;
|
uint8(&CReplay::Buffers)[8][100000] = *(uint8(*)[8][100000])*(uintptr*)0x779958;
|
||||||
bool &CReplay::bPlayingBackFromFile = *(bool*)0x95CD58;
|
bool &CReplay::bPlayingBackFromFile = *(bool*)0x95CD58;
|
||||||
bool &CReplay::bReplayEnabled = *(bool*)0x617CAC;
|
bool &CReplay::bReplayEnabled = *(bool*)0x617CAC;
|
||||||
uint32 &CReplay::SlowMotion = *(uint32*)0x9414D4;
|
uint32 &CReplay::SlowMotion = *(uint32*)0x9414D4;
|
||||||
|
@ -49,9 +49,6 @@ void PrintElementsInPtrList(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0
|
|
||||||
WRAPPER void CReplay::Init(void) { EAXJMP(0x592FE0); }
|
|
||||||
#else
|
|
||||||
void CReplay::Init(void)
|
void CReplay::Init(void)
|
||||||
{
|
{
|
||||||
pBuf0 = nil;
|
pBuf0 = nil;
|
||||||
|
@ -92,7 +89,6 @@ void CReplay::Init(void)
|
||||||
FramesActiveLookAroundCam = 0;
|
FramesActiveLookAroundCam = 0;
|
||||||
bDoLoadSceneWhenDone = false;
|
bDoLoadSceneWhenDone = false;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
void CReplay::DisableReplays(void)
|
void CReplay::DisableReplays(void)
|
||||||
{
|
{
|
||||||
|
@ -104,9 +100,6 @@ void CReplay::EnableReplays(void)
|
||||||
bReplayEnabled = true;
|
bReplayEnabled = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0
|
|
||||||
WRAPPER void CReplay::Update(void) { EAXJMP(0x593170); }
|
|
||||||
#else
|
|
||||||
void PlayReplayFromHD(void);
|
void PlayReplayFromHD(void);
|
||||||
void CReplay::Update(void)
|
void CReplay::Update(void)
|
||||||
{
|
{
|
||||||
|
@ -135,7 +128,6 @@ void CReplay::Update(void)
|
||||||
PlayReplayFromHD();
|
PlayReplayFromHD();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
WRAPPER void CReplay::RecordThisFrame(void) { EAXJMP(0x5932B0); }
|
WRAPPER void CReplay::RecordThisFrame(void) { EAXJMP(0x5932B0); }
|
||||||
|
|
Loading…
Reference in a new issue