Skip to content
Snippets Groups Projects
Commit d2182568 authored by wwylele's avatar wwylele
Browse files

fix:return proper error

parent 75cbfeee
No related branches found
No related tags found
No related merge requests found
......@@ -144,11 +144,12 @@ ResultStatus LoadFile(const std::string& filename) {
case FileType::CCI:
{
// Load application and RomFS
if (ResultStatus::Success == app_loader->Load()) {
ResultStatus result = app_loader->Load();
if (ResultStatus::Success == result) {
Service::FS::RegisterArchiveType(std::make_unique<FileSys::ArchiveFactory_RomFS>(*app_loader), Service::FS::ArchiveIdCode::RomFS);
return ResultStatus::Success;
}
break;
return result;
}
// Standard ELF file format...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment