From 5f58433bcf96f5530ff9b133435a66b1a664ec3c Mon Sep 17 00:00:00 2001 From: jakcron Date: Mon, 28 Mar 2022 15:49:01 +0800 Subject: [PATCH] Fix issue where titleid was being read incorrectly when importing SeedDB. --- ctrtool/src/KeyBag.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctrtool/src/KeyBag.cpp b/ctrtool/src/KeyBag.cpp index 26ff7ac..10275a4 100644 --- a/ctrtool/src/KeyBag.cpp +++ b/ctrtool/src/KeyBag.cpp @@ -921,7 +921,7 @@ void ctrtool::KeyBagInitializer::importSeedDb(const std::shared_ptr(entry[i].title_id.unwrap(), entry[i].seed)); + seed_db.insert(std::pair(entry[i].title_id.unwrap(), entry[i].seed)); } }