mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-11 19:45:23 +00:00
Merge pull request #1435 from lioncash/xci
card_image: Ensure program_nca_status is always initialized
This commit is contained in:
commit
8679934693
1 changed files with 3 additions and 1 deletions
|
@ -20,7 +20,9 @@ namespace FileSys {
|
||||||
|
|
||||||
constexpr std::array<const char*, 0x4> partition_names = {"update", "normal", "secure", "logo"};
|
constexpr std::array<const char*, 0x4> partition_names = {"update", "normal", "secure", "logo"};
|
||||||
|
|
||||||
XCI::XCI(VirtualFile file_) : file(std::move(file_)), partitions(0x4) {
|
XCI::XCI(VirtualFile file_)
|
||||||
|
: file(std::move(file_)), program_nca_status{Loader::ResultStatus::ErrorXCIMissingProgramNCA},
|
||||||
|
partitions(0x4) {
|
||||||
if (file->ReadObject(&header) != sizeof(GamecardHeader)) {
|
if (file->ReadObject(&header) != sizeof(GamecardHeader)) {
|
||||||
status = Loader::ResultStatus::ErrorBadXCIHeader;
|
status = Loader::ResultStatus::ErrorBadXCIHeader;
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue