diff options
author | bunnei <bunneidev@gmail.com> | 2014-12-30 05:00:54 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-12-30 05:00:54 +0100 |
commit | 66f70143c3ac4c4733ae3779b2d0e27e4dec1a68 (patch) | |
tree | 34b388e1f581edf4d1260e1aa4b61403635e7ffb /src/core/file_sys/archive_romfs.cpp | |
parent | Merge pull request #367 from bunnei/usat_ssat (diff) | |
parent | APT:A: Some style changes (diff) | |
download | yuzu-66f70143c3ac4c4733ae3779b2d0e27e4dec1a68.tar yuzu-66f70143c3ac4c4733ae3779b2d0e27e4dec1a68.tar.gz yuzu-66f70143c3ac4c4733ae3779b2d0e27e4dec1a68.tar.bz2 yuzu-66f70143c3ac4c4733ae3779b2d0e27e4dec1a68.tar.lz yuzu-66f70143c3ac4c4733ae3779b2d0e27e4dec1a68.tar.xz yuzu-66f70143c3ac4c4733ae3779b2d0e27e4dec1a68.tar.zst yuzu-66f70143c3ac4c4733ae3779b2d0e27e4dec1a68.zip |
Diffstat (limited to 'src/core/file_sys/archive_romfs.cpp')
-rw-r--r-- | src/core/file_sys/archive_romfs.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/file_sys/archive_romfs.cpp b/src/core/file_sys/archive_romfs.cpp index fdaf73179..2fc3831b7 100644 --- a/src/core/file_sys/archive_romfs.cpp +++ b/src/core/file_sys/archive_romfs.cpp @@ -62,4 +62,9 @@ std::unique_ptr<DirectoryBackend> Archive_RomFS::OpenDirectory(const Path& path) return Common::make_unique<Directory_RomFS>(); } +ResultCode Archive_RomFS::Format(const Path& path) const { + LOG_WARNING(Service_FS, "Attempted to format ROMFS."); + return UnimplementedFunction(ErrorModule::FS); +} + } // namespace FileSys |