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:
@@ -21,9 +21,9 @@ class CStringRegistry;
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
// Codes are either one of the enumerated types below, or a string (similar to Windows resource IDs)
|
||||
typedef int AI_TaskFailureCode_t;
|
||||
typedef intp AI_TaskFailureCode_t;
|
||||
|
||||
enum AI_BaseTaskFailureCodes_t
|
||||
enum AI_BaseTaskFailureCodes_t : AI_TaskFailureCode_t
|
||||
{
|
||||
NO_TASK_FAILURE,
|
||||
FAIL_NO_TARGET,
|
||||
@@ -63,7 +63,7 @@ inline bool IsPathTaskFailure( AI_TaskFailureCode_t code )
|
||||
}
|
||||
|
||||
const char *TaskFailureToString( AI_TaskFailureCode_t code );
|
||||
inline int MakeFailCode( const char *pszGeneralError ) { return (int)pszGeneralError; }
|
||||
inline intp MakeFailCode( const char *pszGeneralError ) { return (intp)pszGeneralError; }
|
||||
|
||||
|
||||
enum TaskStatus_e
|
||||
|
||||
Reference in New Issue
Block a user