aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/file_sys/archive_romfs.cpp
diff options
context:
space:
mode:
authorGravatar bunnei <bunneidev@gmail.com>2014-12-21 01:45:00 -0500
committerGravatar bunnei <bunneidev@gmail.com>2014-12-21 01:45:00 -0500
commit572ce043c291f46f50d97f68f4df4f6f93e72035 (patch)
tree79a59fa757424e053b029b6162937551a03d1e25 /src/core/file_sys/archive_romfs.cpp
parent0f696037f6ce7fabaa3af45eeef2461390b8b64d (diff)
parent0625dd09eaf9158696a9255cb6c6b2bd73122301 (diff)
Merge pull request #271 from archshift/createf
Added CreateFile to the FS_USER service
Diffstat (limited to 'src/core/file_sys/archive_romfs.cpp')
-rw-r--r--src/core/file_sys/archive_romfs.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/file_sys/archive_romfs.cpp b/src/core/file_sys/archive_romfs.cpp
index 1e3e9dc6..32d0777a 100644
--- a/src/core/file_sys/archive_romfs.cpp
+++ b/src/core/file_sys/archive_romfs.cpp
@@ -58,6 +58,12 @@ bool Archive_RomFS::DeleteDirectory(const FileSys::Path& path) const {
return false;
}
+ResultCode Archive_RomFS::CreateFile(const Path& path, u32 size) const {
+ LOG_WARNING(Service_FS, "Attempted to create a file in ROMFS.");
+ // TODO: Verify error code
+ return ResultCode(ErrorDescription::NotAuthorized, ErrorModule::FS, ErrorSummary::NotSupported, ErrorLevel::Permanent);
+}
+
/**
* Create a directory specified by its path
* @param path Path relative to the archive