mirror of
https://github.com/celisej567/source-engine.git
synced 2026-01-04 18:09:53 +03:00
arm64 : fix intptr_t size
This commit is contained in:
@@ -13,8 +13,8 @@
|
||||
#include "vstdlib/vstdlib.h"
|
||||
|
||||
// handle to a KeyValues key name symbol
|
||||
typedef int HKeySymbol;
|
||||
#define INVALID_KEY_SYMBOL (-1)
|
||||
typedef intp HKeySymbol;
|
||||
#define INVALID_KEY_SYMBOL (HKeySymbol)(-1)
|
||||
|
||||
class IBaseFileSystem;
|
||||
class KeyValues;
|
||||
|
||||
@@ -1147,7 +1147,7 @@ private:
|
||||
// Raw thread launching
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
inline unsigned FunctorExecuteThread( void *pParam )
|
||||
inline uintp FunctorExecuteThread( void *pParam )
|
||||
{
|
||||
CFunctor *pFunctor = (CFunctor *)pParam;
|
||||
(*pFunctor)();
|
||||
|
||||
Reference in New Issue
Block a user