diff options
| author | 2018-04-15 15:13:02 -0400 | |
|---|---|---|
| committer | 2018-04-15 15:13:02 -0400 | |
| commit | b8825fbf10c3122309313a959a93b20baa94ec2f (patch) | |
| tree | c7e6223749099a7ae145cb1a925d6a71c16c169a /src/core/file_sys/filesystem.h | |
| parent | Merge pull request #334 from Subv/used_buffers (diff) | |
| parent | fsp_srv: Implement DeleteFile. (diff) | |
| download | yuzu-b8825fbf10c3122309313a959a93b20baa94ec2f.tar.gz yuzu-b8825fbf10c3122309313a959a93b20baa94ec2f.tar.xz yuzu-b8825fbf10c3122309313a959a93b20baa94ec2f.zip | |
Merge pull request #335 from bunnei/delete-file
fsp_srv: Implement DeleteFile.
Diffstat (limited to 'src/core/file_sys/filesystem.h')
| -rw-r--r-- | src/core/file_sys/filesystem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/filesystem.h b/src/core/file_sys/filesystem.h index 399427ca2..beefcfdb2 100644 --- a/src/core/file_sys/filesystem.h +++ b/src/core/file_sys/filesystem.h | |||
| @@ -97,7 +97,7 @@ public: | |||
| 97 | * @param path Path relative to the archive | 97 | * @param path Path relative to the archive |
| 98 | * @return Result of the operation | 98 | * @return Result of the operation |
| 99 | */ | 99 | */ |
| 100 | virtual ResultCode DeleteFile(const Path& path) const = 0; | 100 | virtual ResultCode DeleteFile(const std::string& path) const = 0; |
| 101 | 101 | ||
| 102 | /** | 102 | /** |
| 103 | * Create a directory specified by its path | 103 | * Create a directory specified by its path |