mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 12:05:45 +00:00
HLE/FS: FS::CreateFile takes an u64 for the file size.
This commit is contained in:
parent
07fe93e886
commit
3c9508c468
8 changed files with 10 additions and 10 deletions
|
@ -108,7 +108,7 @@ public:
|
|||
* @param size The size of the new file, filled with zeroes
|
||||
* @return File creation result code
|
||||
*/
|
||||
virtual ResultCode CreateFile(const Path& path, u32 size) const = 0;
|
||||
virtual ResultCode CreateFile(const Path& path, u64 size) const = 0;
|
||||
|
||||
/**
|
||||
* Create a directory specified by its path
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue