mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-16 13:58:33 -05:00
Added CreateFile to the FS_USER service
Tested with hwtests.
This commit is contained in:
@ -28,6 +28,7 @@ public:
|
||||
bool DeleteFile(const FileSys::Path& path) const override;
|
||||
bool RenameFile(const FileSys::Path& src_path, const FileSys::Path& dest_path) const override;
|
||||
bool DeleteDirectory(const FileSys::Path& path) const override;
|
||||
ResultCode CreateFile(const Path& path, u32 size) const override;
|
||||
bool CreateDirectory(const Path& path) const override;
|
||||
bool RenameDirectory(const FileSys::Path& src_path, const FileSys::Path& dest_path) const override;
|
||||
std::unique_ptr<DirectoryBackend> OpenDirectory(const Path& path) const override;
|
||||
|
Reference in New Issue
Block a user