summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/ivfc_archive.cpp
diff options
context:
space:
mode:
authorwwylele <wwylele@gmail.com>2016-10-02 05:29:04 +0200
committerwwylele <wwylele@gmail.com>2016-10-02 05:29:16 +0200
commit96b0e9476bdd010051bec427d365b49437801f4d (patch)
tree6a80eef8c0fbbf7e891755a102fcc8674efb1f26 /src/core/file_sys/ivfc_archive.cpp
parentMerge pull request #2083 from yuriks/opengl-scissor-cached-rect (diff)
downloadyuzu-96b0e9476bdd010051bec427d365b49437801f4d.tar
yuzu-96b0e9476bdd010051bec427d365b49437801f4d.tar.gz
yuzu-96b0e9476bdd010051bec427d365b49437801f4d.tar.bz2
yuzu-96b0e9476bdd010051bec427d365b49437801f4d.tar.lz
yuzu-96b0e9476bdd010051bec427d365b49437801f4d.tar.xz
yuzu-96b0e9476bdd010051bec427d365b49437801f4d.tar.zst
yuzu-96b0e9476bdd010051bec427d365b49437801f4d.zip
Diffstat (limited to 'src/core/file_sys/ivfc_archive.cpp')
-rw-r--r--src/core/file_sys/ivfc_archive.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/file_sys/ivfc_archive.cpp b/src/core/file_sys/ivfc_archive.cpp
index 49cc1de10..af59d296d 100644
--- a/src/core/file_sys/ivfc_archive.cpp
+++ b/src/core/file_sys/ivfc_archive.cpp
@@ -43,6 +43,12 @@ bool IVFCArchive::DeleteDirectory(const Path& path) const {
return false;
}
+bool IVFCArchive::DeleteDirectoryRecursively(const Path& path) const {
+ LOG_CRITICAL(Service_FS, "Attempted to delete a directory from an IVFC archive (%s).",
+ GetName().c_str());
+ return false;
+}
+
ResultCode IVFCArchive::CreateFile(const Path& path, u64 size) const {
LOG_CRITICAL(Service_FS, "Attempted to create a file in an IVFC archive (%s).",
GetName().c_str());