summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/fs
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2015-12-28 16:04:05 +0100
committerSubv <subv2112@gmail.com>2016-03-20 20:28:19 +0100
commit802ef6d09956a94e19a9426e90bbca4cb103146f (patch)
treebaac3240b5c1b7e93f85d905398d37ed7e3afe79 /src/core/hle/service/fs
parentHLE/FS: Return the proper error codes on file Read/Write operations. (diff)
downloadyuzu-802ef6d09956a94e19a9426e90bbca4cb103146f.tar
yuzu-802ef6d09956a94e19a9426e90bbca4cb103146f.tar.gz
yuzu-802ef6d09956a94e19a9426e90bbca4cb103146f.tar.bz2
yuzu-802ef6d09956a94e19a9426e90bbca4cb103146f.tar.lz
yuzu-802ef6d09956a94e19a9426e90bbca4cb103146f.tar.xz
yuzu-802ef6d09956a94e19a9426e90bbca4cb103146f.tar.zst
yuzu-802ef6d09956a94e19a9426e90bbca4cb103146f.zip
Diffstat (limited to 'src/core/hle/service/fs')
-rw-r--r--src/core/hle/service/fs/archive.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/fs/archive.cpp b/src/core/hle/service/fs/archive.cpp
index 8c38c3ba4..0c56777cf 100644
--- a/src/core/hle/service/fs/archive.cpp
+++ b/src/core/hle/service/fs/archive.cpp
@@ -405,7 +405,7 @@ ResultVal<Kernel::SharedPtr<Directory>> OpenDirectoryFromArchive(ArchiveHandle a
std::unique_ptr<FileSys::DirectoryBackend> backend = archive->OpenDirectory(path);
if (backend == nullptr) {
- return ResultCode(ErrorDescription::NotFound, ErrorModule::FS,
+ return ResultCode(ErrorDescription::FS_NotFound, ErrorModule::FS,
ErrorSummary::NotFound, ErrorLevel::Permanent);
}