mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-07 17:29:36 +00:00
arm64 ptr size fix
This commit is contained in:
@@ -18,7 +18,7 @@ static ConVar cl_showevents ( "cl_showevents", "0", FCVAR_CHEAT, "Print event fi
|
||||
// Input : slot -
|
||||
// *eventname -
|
||||
//-----------------------------------------------------------------------------
|
||||
void CL_DescribeEvent( int slot, CEventInfo *event, const char *eventname )
|
||||
void CL_DescribeEvent( intp slot, CEventInfo *event, const char *eventname )
|
||||
{
|
||||
int idx = (slot & 31);
|
||||
|
||||
@@ -81,7 +81,7 @@ void CL_FireEvents( void )
|
||||
return;
|
||||
}
|
||||
|
||||
int i, next;
|
||||
intp i, next;
|
||||
for ( i = cl.events.Head(); i != cl.events.InvalidIndex(); i = next )
|
||||
{
|
||||
next = cl.events.Next( i );
|
||||
|
||||
Reference in New Issue
Block a user