fs_cache works properly again now.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2963 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
3ddb5e5dc5
commit
073a9b9056
1 changed files with 1 additions and 1 deletions
|
@ -1633,7 +1633,7 @@ void FS_RebuildFSHash(void)
|
|||
if (!filesystemhash.numbuckets)
|
||||
{
|
||||
filesystemhash.numbuckets = 1024;
|
||||
filesystemhash.bucket = (bucket_t**)BZ_Malloc(Hash_BytesForBuckets(filesystemhash.numbuckets));
|
||||
filesystemhash.bucket = (bucket_t**)Z_Malloc(Hash_BytesForBuckets(filesystemhash.numbuckets));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue