diff options
| author | 2015-12-28 10:04:05 -0500 | |
|---|---|---|
| committer | 2016-03-20 14:28:19 -0500 | |
| commit | 802ef6d09956a94e19a9426e90bbca4cb103146f (patch) | |
| tree | baac3240b5c1b7e93f85d905398d37ed7e3afe79 /src | |
| parent | HLE/FS: Return the proper error codes on file Read/Write operations. (diff) | |
| download | yuzu-802ef6d09956a94e19a9426e90bbca4cb103146f.tar.gz yuzu-802ef6d09956a94e19a9426e90bbca4cb103146f.tar.xz yuzu-802ef6d09956a94e19a9426e90bbca4cb103146f.zip | |
HLE/FS: Fixed the OpenDirectory error code
Diffstat (limited to 'src')
| -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 | |||
| 405 | 405 | ||
| 406 | std::unique_ptr<FileSys::DirectoryBackend> backend = archive->OpenDirectory(path); | 406 | std::unique_ptr<FileSys::DirectoryBackend> backend = archive->OpenDirectory(path); |
| 407 | if (backend == nullptr) { | 407 | if (backend == nullptr) { |
| 408 | return ResultCode(ErrorDescription::NotFound, ErrorModule::FS, | 408 | return ResultCode(ErrorDescription::FS_NotFound, ErrorModule::FS, |
| 409 | ErrorSummary::NotFound, ErrorLevel::Permanent); | 409 | ErrorSummary::NotFound, ErrorLevel::Permanent); |
| 410 | } | 410 | } |
| 411 | 411 | ||