mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-08 09:49:36 +00:00
fpersmissive fixes
This commit is contained in:
@@ -2051,10 +2051,10 @@ public:
|
||||
void *ListIndexToHash( unsigned short listIndex )
|
||||
{
|
||||
unsigned int hash = (unsigned int)listIndex;
|
||||
|
||||
|
||||
// set the high bit, so zero means "not there"
|
||||
hash |= 0x80000000;
|
||||
return (void *)hash;
|
||||
return (void *)(intp)hash;
|
||||
}
|
||||
|
||||
// Lookup this object and get a multilist entry
|
||||
|
||||
Reference in New Issue
Block a user