mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-14 12:46:58 +00:00
arm64 : fix intptr_t size
This commit is contained in:
@@ -115,7 +115,7 @@ private:
|
||||
static unsigned int KeyFunc( const HashEntry &src )
|
||||
{
|
||||
// Shift right to get rid of alignment bits and border the struct on a 16 byte boundary
|
||||
return (unsigned int)src.key;
|
||||
return (unsigned int)(uintp)src.key;
|
||||
}
|
||||
|
||||
CUtlHash< HashEntry > m_HashTable;
|
||||
|
||||
Reference in New Issue
Block a user