From 34571f4d2e80a3194a3c4cb697dba674d11a35b4 Mon Sep 17 00:00:00 2001 From: bunnei Date: Tue, 31 Oct 2017 19:26:11 -0400 Subject: hle: Use Switch formatted result codes. --- src/core/file_sys/ivfc_archive.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/core/file_sys/ivfc_archive.cpp') diff --git a/src/core/file_sys/ivfc_archive.cpp b/src/core/file_sys/ivfc_archive.cpp index 2735d2e3c..b3c3f2c6f 100644 --- a/src/core/file_sys/ivfc_archive.cpp +++ b/src/core/file_sys/ivfc_archive.cpp @@ -26,9 +26,8 @@ ResultVal> IVFCArchive::OpenFile(const Path& path, ResultCode IVFCArchive::DeleteFile(const Path& path) const { LOG_CRITICAL(Service_FS, "Attempted to delete a file from an IVFC archive (%s).", GetName().c_str()); - // TODO(Subv): Verify error code - return ResultCode(ErrorDescription::NoData, ErrorModule::FS, ErrorSummary::Canceled, - ErrorLevel::Status); + // TODO(bunnei): Use correct error code + return ResultCode(-1); } ResultCode IVFCArchive::RenameFile(const Path& src_path, const Path& dest_path) const { @@ -55,9 +54,8 @@ ResultCode IVFCArchive::DeleteDirectoryRecursively(const Path& path) const { 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()); - // TODO: Verify error code - return ResultCode(ErrorDescription::NotAuthorized, ErrorModule::FS, ErrorSummary::NotSupported, - ErrorLevel::Permanent); + // TODO(bunnei): Use correct error code + return ResultCode(-1); } ResultCode IVFCArchive::CreateDirectory(const Path& path) const { -- cgit v1.2.3