1
0
mirror of https://github.com/citra-emu/citra.git synced 2025-05-20 13:00:07 +00:00

HLE/FS: Fixed the OpenDirectory error code

This commit is contained in:
Subv 2015-12-28 10:04:05 -05:00 committed by Sean Maas
parent f0c0da5b48
commit 4be40b7c81

@ -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);
}