mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-08 01:39:36 +00:00
arm64 : fix intptr_t size
This commit is contained in:
@@ -260,7 +260,7 @@ void CLagCompensationManager::FrameUpdatePostEntityThink()
|
||||
Assert( track->Count() < 1000 ); // insanity check
|
||||
|
||||
// remove tail records that are too old
|
||||
int tailIndex = track->Tail();
|
||||
intp tailIndex = track->Tail();
|
||||
while ( track->IsValidIndex( tailIndex ) )
|
||||
{
|
||||
LagRecord &tail = track->Element( tailIndex );
|
||||
@@ -428,7 +428,7 @@ void CLagCompensationManager::BacktrackPlayer( CBasePlayer *pPlayer, float flTar
|
||||
if ( track->Count() <= 0 )
|
||||
return;
|
||||
|
||||
int curr = track->Head();
|
||||
intp curr = track->Head();
|
||||
|
||||
LagRecord *prevRecord = NULL;
|
||||
LagRecord *record = NULL;
|
||||
|
||||
Reference in New Issue
Block a user