From 6b57619871315e51d14bc5e88ac55f114e2d8f80 Mon Sep 17 00:00:00 2001 From: ITotalJustice <47043333+ITotalJustice@users.noreply.github.com> Date: Wed, 30 Jul 2025 23:28:25 +0100 Subject: [PATCH] change default option when installing for nca verify. the default options where to always verify the nca content, this was for brick protection. however, users seem to not care about this protection and get frustrated with the default values, seemingly unable to find the install menu to disable said options. this change skips verify by default. less issues for me, less unhappy users, win win. --- sphaira/include/app.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sphaira/include/app.hpp b/sphaira/include/app.hpp index 2b4b6fd..a648816 100644 --- a/sphaira/include/app.hpp +++ b/sphaira/include/app.hpp @@ -311,14 +311,14 @@ public: option::OptionBool m_skip_addon{INI_SECTION, "skip_addon", false}; option::OptionBool m_skip_data_patch{INI_SECTION, "skip_data_patch", false}; option::OptionBool m_skip_ticket{INI_SECTION, "skip_ticket", false}; - option::OptionBool m_skip_nca_hash_verify{INI_SECTION, "skip_nca_hash_verify", false}; - option::OptionBool m_skip_rsa_header_fixed_key_verify{INI_SECTION, "skip_rsa_header_fixed_key_verify", false}; - option::OptionBool m_skip_rsa_npdm_fixed_key_verify{INI_SECTION, "skip_rsa_npdm_fixed_key_verify", false}; + option::OptionBool m_skip_nca_hash_verify{INI_SECTION, "skip_nca_hash_verify", true}; + option::OptionBool m_skip_rsa_header_fixed_key_verify{INI_SECTION, "skip_rsa_header_fixed_key_verify", true}; + option::OptionBool m_skip_rsa_npdm_fixed_key_verify{INI_SECTION, "skip_rsa_npdm_fixed_key_verify", true}; option::OptionBool m_ignore_distribution_bit{INI_SECTION, "ignore_distribution_bit", false}; option::OptionBool m_convert_to_common_ticket{INI_SECTION, "convert_to_common_ticket", true}; option::OptionBool m_convert_to_standard_crypto{INI_SECTION, "convert_to_standard_crypto", false}; option::OptionBool m_lower_master_key{INI_SECTION, "lower_master_key", false}; - option::OptionBool m_lower_system_version{INI_SECTION, "lower_system_version", false}; + option::OptionBool m_lower_system_version{INI_SECTION, "lower_system_version", true}; // dump options option::OptionBool m_dump_app_folder{"dump", "app_folder", true};