diff options
| author | bunnei <bunneidev@gmail.com> | 2018-04-15 13:15:18 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2018-04-15 13:15:18 -0400 |
| commit | bddad50dd400b31849fbd9486637fa9a2522cf58 (patch) | |
| tree | f8e66493abf7fd870e6e98ed3d13b31e61a71b08 /src/core/file_sys/romfs_filesystem.cpp | |
| parent | 34264879b359107ec0c2fdb6af4b17faf52e4a6a (diff) | |
fsp_srv: Implement DeleteFile.
- Used by Binding of Isaac.
Diffstat (limited to 'src/core/file_sys/romfs_filesystem.cpp')
| -rw-r--r-- | src/core/file_sys/romfs_filesystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/romfs_filesystem.cpp b/src/core/file_sys/romfs_filesystem.cpp index 0c6cc3157..3d77e2d5f 100644 --- a/src/core/file_sys/romfs_filesystem.cpp +++ b/src/core/file_sys/romfs_filesystem.cpp @@ -20,7 +20,7 @@ ResultVal<std::unique_ptr<StorageBackend>> RomFS_FileSystem::OpenFile(const std: std::make_unique<RomFS_Storage>(romfs_file, data_offset, data_size)); } -ResultCode RomFS_FileSystem::DeleteFile(const Path& path) const { +ResultCode RomFS_FileSystem::DeleteFile(const std::string& path) const { LOG_CRITICAL(Service_FS, "Attempted to delete a file from an ROMFS archive (%s).", GetName().c_str()); // TODO(bunnei): Use correct error code |
