diff options
| author | 2018-03-21 09:36:26 -0500 | |
|---|---|---|
| committer | 2018-03-21 09:55:59 -0500 | |
| commit | eff3f60b73343365ad65638f55591965df6f7e25 (patch) | |
| tree | 9b2d61666ff0f516b06d3a6cfda144afb5fb72e7 /src/core/file_sys/filesystem.h | |
| parent | FS: Implemented IFileSystem's OpenDirectory function. (diff) | |
| download | yuzu-eff3f60b73343365ad65638f55591965df6f7e25.tar.gz yuzu-eff3f60b73343365ad65638f55591965df6f7e25.tar.xz yuzu-eff3f60b73343365ad65638f55591965df6f7e25.zip | |
FS: Implemented IFileSystem::CreateDirectory.
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 22ad24143..399427ca2 100644 --- a/src/core/file_sys/filesystem.h +++ b/src/core/file_sys/filesystem.h | |||
| @@ -104,7 +104,7 @@ public: | |||
| 104 | * @param path Path relative to the archive | 104 | * @param path Path relative to the archive |
| 105 | * @return Result of the operation | 105 | * @return Result of the operation |
| 106 | */ | 106 | */ |
| 107 | virtual ResultCode CreateDirectory(const Path& path) const = 0; | 107 | virtual ResultCode CreateDirectory(const std::string& path) const = 0; |
| 108 | 108 | ||
| 109 | /** | 109 | /** |
| 110 | * Delete a directory specified by its path | 110 | * Delete a directory specified by its path |