diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/file_sys/card_image.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/file_sys/card_image.cpp b/src/core/file_sys/card_image.cpp index 2c145bd09..1fec9b0e9 100644 --- a/src/core/file_sys/card_image.cpp +++ b/src/core/file_sys/card_image.cpp | |||
| @@ -18,7 +18,12 @@ | |||
| 18 | 18 | ||
| 19 | namespace FileSys { | 19 | namespace FileSys { |
| 20 | 20 | ||
| 21 | constexpr std::array<const char*, 0x4> partition_names = {"update", "normal", "secure", "logo"}; | 21 | constexpr std::array partition_names{ |
| 22 | "update", | ||
| 23 | "normal", | ||
| 24 | "secure", | ||
| 25 | "logo", | ||
| 26 | }; | ||
| 22 | 27 | ||
| 23 | XCI::XCI(VirtualFile file_) | 28 | XCI::XCI(VirtualFile file_) |
| 24 | : file(std::move(file_)), program_nca_status{Loader::ResultStatus::ErrorXCIMissingProgramNCA}, | 29 | : file(std::move(file_)), program_nca_status{Loader::ResultStatus::ErrorXCIMissingProgramNCA}, |