archive_backend: Minor changes to match Switch IFileSystem.

This commit is contained in:
bunnei 2018-01-19 22:08:21 -05:00
parent 2f71a32363
commit 7988f02489
5 changed files with 26 additions and 26 deletions

View file

@ -73,7 +73,7 @@ ResultVal<std::unique_ptr<DirectoryBackend>> ROMFSArchive::OpenDirectory(const P
return MakeResult<std::unique_ptr<DirectoryBackend>>(std::make_unique<ROMFSDirectory>());
}
u64 ROMFSArchive::GetFreeBytes() const {
u64 ROMFSArchive::GetFreeSpaceSize() const {
LOG_WARNING(Service_FS, "Attempted to get the free space in an ROMFS archive");
return 0;
}