From 0fe832bb49eaa4c0b82d52955ddc73fa6c7fd575 Mon Sep 17 00:00:00 2001 From: zhupengfei Date: Sat, 29 Feb 2020 09:11:34 +0800 Subject: [PATCH] Make the arrays const --- src/core/file_sys/ncch_container.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/file_sys/ncch_container.cpp b/src/core/file_sys/ncch_container.cpp index 177526aff..056f7a901 100644 --- a/src/core/file_sys/ncch_container.cpp +++ b/src/core/file_sys/ncch_container.cpp @@ -315,7 +315,7 @@ Loader::ResultStatus NCCHContainer::Load() { const auto mods_path = fmt::format("{}mods/{:016X}/", FileUtil::GetUserPath(FileUtil::UserPath::LoadDir), GetModId(ncch_header.program_id)); - std::array exheader_override_paths{{ + const std::array exheader_override_paths{{ mods_path + "exheader.bin", filepath + ".exheader", }}; @@ -585,7 +585,7 @@ Loader::ResultStatus NCCHContainer::LoadOverrideExeFSSection(const char* name, const auto mods_path = fmt::format("{}mods/{:016X}/", FileUtil::GetUserPath(FileUtil::UserPath::LoadDir), GetModId(ncch_header.program_id)); - std::array override_paths{{ + const std::array override_paths{{ mods_path + "exefs/" + override_name, mods_path + override_name, filepath + ".exefsdir/" + override_name,