mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-24 06:27:52 -05:00
Added CreateFile to the FS_USER service
Tested with hwtests.
This commit is contained in:
@ -53,6 +53,14 @@ public:
|
||||
*/
|
||||
bool DeleteDirectory(const FileSys::Path& path) const override;
|
||||
|
||||
/**
|
||||
* Create a file specified by its path
|
||||
* @param path Path relative to the Archive
|
||||
* @param size The size of the new file, filled with zeroes
|
||||
* @return File creation result code
|
||||
*/
|
||||
ResultCode CreateFile(const Path& path, u32 size) const override;
|
||||
|
||||
/**
|
||||
* Create a directory specified by its path
|
||||
* @param path Path relative to the archive
|
||||
|
Reference in New Issue
Block a user