diff options
author | Subv <subv2112@gmail.com> | 2015-12-28 10:04:05 -0500 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2016-03-20 14:28:19 -0500 |
commit | 802ef6d09956a94e19a9426e90bbca4cb103146f (patch) | |
tree | baac3240b5c1b7e93f85d905398d37ed7e3afe79 | |
parent | 96f0e32f836b19edb3d14ce4f87a7aed1ac6a8e1 (diff) |
HLE/FS: Fixed the OpenDirectory error code
-rw-r--r-- | src/core/hle/service/fs/archive.cpp | 2 |
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); } |