mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-09 02:09:35 +00:00
arm64 : fix intptr_t size
This commit is contained in:
+1
-1
@@ -54,7 +54,7 @@ void CLZSS::BuildHash( const unsigned char *pData )
|
||||
lzss_list_t *pList;
|
||||
lzss_node_t *pTarget;
|
||||
|
||||
int targetindex = (unsigned int)pData & ( m_nWindowSize - 1 );
|
||||
intp targetindex = (intp)pData & ( m_nWindowSize - 1 );
|
||||
pTarget = &m_pHashTarget[targetindex];
|
||||
if ( pTarget->pData )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user