Merge branch 'indev' of https://github.com/Mauler125/r5sdk into indev

This commit is contained in:
Kawe Mazidjatari 2022-05-01 21:09:06 +02:00
commit a23c0b1ba9
2 changed files with 7 additions and 7 deletions

View File

@ -15,7 +15,7 @@
//------------------------------------------------------------------------------
bool CBaseClientState::IsPaused()
{
return *m_bPaused;
return **m_bPaused;
}
//------------------------------------------------------------------------------
@ -26,7 +26,7 @@ float CBaseClientState::GetClientTime()
{
if (*cl_time_use_host_tickcount)
{
return (float)(int)*host_tickcount * (float)*client_debugdraw_int_unk;
return (float)(int)**host_tickcount * (float)*client_debugdraw_int_unk;
}
else
{
@ -39,7 +39,7 @@ float CBaseClientState::GetClientTime()
//------------------------------------------------------------------------------
int CBaseClientState::GetClientTickCount() const
{
return *host_tickcount;
return **host_tickcount;
}
//------------------------------------------------------------------------------
@ -47,7 +47,7 @@ int CBaseClientState::GetClientTickCount() const
//------------------------------------------------------------------------------
void CBaseClientState::SetClientTickCount(int tick)
{
*host_tickcount = tick;
**host_tickcount = tick;
}
CBaseClientState* g_pBaseClientState = new CBaseClientState();

View File

@ -8,8 +8,8 @@ inline int* cl_host_tickcount = nullptr;
class CBaseClientState
{
public:
bool* m_bPaused = cl_m_bPaused; // pauzes the client side simulation in apex.
int* host_tickcount = cl_host_tickcount; // client simulation tick count.
bool** m_bPaused = &cl_m_bPaused; // pauses the client side simulation in apex.
int** host_tickcount = &cl_host_tickcount; // client simulation tick count.
bool IsPaused();
float GetClientTime();
@ -37,7 +37,7 @@ class HClientState : public IDetour
{
//std::cout << "| FUN: CClientState::CheckForResend : 0x" << std::hex << std::uppercase << p_CClientState__CheckForResend.GetPtr() << std::setw(nPad) << " |" << std::endl;
std::cout << "| VAR: cl_m_bPaused : 0x" << std::hex << std::uppercase << cl_m_bPaused << std::setw(0) << " |" << std::endl;
std::cout << "| FUN: cl_host_tickcount : 0x" << std::hex << std::uppercase << cl_host_tickcount << std::setw(0) << " |" << std::endl;
std::cout << "| VAR: cl_host_tickcount : 0x" << std::hex << std::uppercase << cl_host_tickcount << std::setw(0) << " |" << std::endl;
std::cout << "+----------------------------------------------------------------+" << std::endl;
}
virtual void GetFun(void) const { }