forked from eden-emu/eden
HLE/FS: FS::CreateFile takes an u64 for the file size.
This commit is contained in:
parent
784c5539ea
commit
381a5c053f
8 changed files with 10 additions and 10 deletions
|
@ -37,7 +37,7 @@ public:
|
|||
bool DeleteFile(const Path& path) const override;
|
||||
bool RenameFile(const Path& src_path, const Path& dest_path) const override;
|
||||
bool DeleteDirectory(const Path& path) const override;
|
||||
ResultCode CreateFile(const Path& path, u32 size) const override;
|
||||
ResultCode CreateFile(const Path& path, u64 size) const override;
|
||||
bool CreateDirectory(const Path& path) const override;
|
||||
bool RenameDirectory(const Path& src_path, const Path& dest_path) const override;
|
||||
std::unique_ptr<DirectoryBackend> OpenDirectory(const Path& path) const override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue