mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-02 16:59:03 +00:00
Fix issue where titleid was being read incorrectly when importing SeedDB.
This commit is contained in:
@@ -921,7 +921,7 @@ void ctrtool::KeyBagInitializer::importSeedDb(const std::shared_ptr<tc::io::ISou
|
|||||||
// import entries
|
// import entries
|
||||||
for (size_t i = 0; i < n_entries; i++)
|
for (size_t i = 0; i < n_entries; i++)
|
||||||
{
|
{
|
||||||
seed_db.insert(std::pair<byte_t, KeyBag::Aes128Key>(entry[i].title_id.unwrap(), entry[i].seed));
|
seed_db.insert(std::pair<uint64_t, KeyBag::Aes128Key>(entry[i].title_id.unwrap(), entry[i].seed));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user