diff --git a/source/lib/res/vfs.h b/source/lib/res/vfs.h index 823e69820e..06cd311142 100755 --- a/source/lib/res/vfs.h +++ b/source/lib/res/vfs.h @@ -169,7 +169,7 @@ extern ssize_t vfs_io(Handle hf, size_t size, void** p); // load the entire file into memory; return a memory handle to the // buffer and its address/size. output parameters are zeroed on failure. -extern Handle vfs_load(const char* fn, void*& p, size_t& size); +extern Handle vfs_load(const char* fn, void*& p, size_t& size, uint flags = 0); extern int vfs_store(const char* fn, void* p, size_t size, uint flags = 0);