diff options
Diffstat (limited to 'source/files.c')
-rw-r--r-- | source/files.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/source/files.c b/source/files.c index 626ce8b..c859e92 100644 --- a/source/files.c +++ b/source/files.c @@ -1258,25 +1258,6 @@ void FS_FPrintf( fileHandle_t f, const char *format, ... ) { FS_Write( string, len, f ); } -uint32 _Com_HashPath( const char *string, int hashSize ) { - uint32 hash; - uint32 c; - - hash = 0; - while( *string ) { - c = *string++; - if( c == '\\' ) { - c = '/'; - } else { - c = Q_tolower( c ); - } - hash = 127 * hash + c; - } - - hash = ( hash >> 20 ) ^ ( hash >> 10 ) ^ hash; - return hash & ( hashSize - 1 ); -} - /* ================= FS_LoadPakFile |