Use PHYSFS_readBytes instead of deprecated PHYSFS_read

This commit is contained in:
Marvin Scholz
2020-01-10 23:59:12 +01:00
committed by Ethan Lee
parent 5c9c7297ed
commit 06c6de9433
2 changed files with 3 additions and 3 deletions

View File

@@ -124,7 +124,7 @@ void FILESYSTEM_loadFileToMemory(const char *name, unsigned char **mem, size_t *
*len = length;
}
*mem = (unsigned char*) malloc(length);
PHYSFS_read(handle, *mem, 1, length);
PHYSFS_readBytes(handle, *mem, length);
PHYSFS_close(handle);
}