diff options
| author | Lioncash <mathew1800@gmail.com> | 2020-12-10 01:31:58 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2020-12-10 01:44:43 -0500 |
| commit | b1657b8c6b4ef07dd6eea92f4559a32ca3e0894a (patch) | |
| tree | 6de62e6d506fb1867794956b52d3c2abde6054bd /src/core/file_sys/nca_patch.cpp | |
| parent | 4e94d0d53af2cdb7b03ef9de23cc29f3565df97a (diff) | |
vfs: Use existing type aliases consistently
Makes use of the VirtualDir and VirtualFile aliases across the board
instead of having a few isolated places that don't use it.
Diffstat (limited to 'src/core/file_sys/nca_patch.cpp')
| -rw-r--r-- | src/core/file_sys/nca_patch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/nca_patch.cpp b/src/core/file_sys/nca_patch.cpp index 5990a2fd5..adcf0732f 100644 --- a/src/core/file_sys/nca_patch.cpp +++ b/src/core/file_sys/nca_patch.cpp @@ -191,7 +191,7 @@ bool BKTR::Resize(std::size_t new_size) { return false; } -std::shared_ptr<VfsDirectory> BKTR::GetContainingDirectory() const { +VirtualDir BKTR::GetContainingDirectory() const { return base_romfs->GetContainingDirectory(); } |
