mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-02 16:59:03 +00:00
Merge pull request #112 from 3DSGuy/seeddb-not-import-fix
Fix issue where SeedDB would not import correctly.
This commit is contained in:
@@ -921,7 +921,7 @@ void ctrtool::KeyBagInitializer::importSeedDb(const std::shared_ptr<tc::io::ISou
|
||||
// import entries
|
||||
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