feat: Add support for encrypted NCSD
Missing version 1 support and seeded crypto but that would be enough for now.
This commit is contained in:
@@ -161,7 +161,7 @@ bool Emulator::loadROM(const std::filesystem::path& path) {
|
||||
|
||||
bool Emulator::loadNCSD(const std::filesystem::path& path) {
|
||||
romType = ROMType::NCSD;
|
||||
std::optional<NCSD> opt = memory.loadNCSD(path);
|
||||
std::optional<NCSD> opt = memory.loadNCSD(aesEngine, path);
|
||||
|
||||
if (!opt.has_value()) {
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user