mirror of
https://github.com/PabloMK7/citra
synced 2024-11-15 05:08:23 +00:00
Merge pull request #3271 from lioncash/retval
ncch: Add missing return statement in ReadUpdateRomFs
This commit is contained in:
commit
87ac05a575
1 changed files with 2 additions and 0 deletions
|
@ -222,6 +222,8 @@ ResultStatus AppLoader_NCCH::ReadUpdateRomFS(std::shared_ptr<FileUtil::IOFile>&
|
|||
|
||||
if (result != ResultStatus::Success)
|
||||
return base_ncch.ReadRomFS(romfs_file, offset, size);
|
||||
|
||||
return ResultStatus::Success;
|
||||
}
|
||||
|
||||
ResultStatus AppLoader_NCCH::ReadTitle(std::string& title) {
|
||||
|
|
Loading…
Reference in a new issue