diff options
| author | bunnei <bunneidev@gmail.com> | 2020-12-12 01:54:28 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-12 01:54:28 -0800 |
| commit | 69b46dd607e92e50b2f83e35bb7301bb9f41d460 (patch) | |
| tree | 34c48167b9b422315021a0be86db7ae76cc835fa /src/core/file_sys/vfs_concat.h | |
| parent | c918c6480f9426518df5e741db34620aec350c48 (diff) | |
| parent | b1657b8c6b4ef07dd6eea92f4559a32ca3e0894a (diff) | |
Merge pull request #5183 from lioncash/alias2
vfs: Use existing type aliases consistently
Diffstat (limited to 'src/core/file_sys/vfs_concat.h')
| -rw-r--r-- | src/core/file_sys/vfs_concat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/vfs_concat.h b/src/core/file_sys/vfs_concat.h index 7a26343c0..287c72555 100644 --- a/src/core/file_sys/vfs_concat.h +++ b/src/core/file_sys/vfs_concat.h @@ -31,7 +31,7 @@ public: std::string GetName() const override; std::size_t GetSize() const override; bool Resize(std::size_t new_size) override; - std::shared_ptr<VfsDirectory> GetContainingDirectory() const override; + VirtualDir GetContainingDirectory() const override; bool IsWritable() const override; bool IsReadable() const override; std::size_t Read(u8* data, std::size_t length, std::size_t offset) const override; |
