Add CCI support
This commit is contained in:
@@ -362,7 +362,7 @@ bool Emulator::loadROM(const std::filesystem::path& path) {
|
|||||||
|
|
||||||
if (extension == ".elf" || extension == ".axf")
|
if (extension == ".elf" || extension == ".axf")
|
||||||
success = loadELF(path);
|
success = loadELF(path);
|
||||||
else if (extension == ".3ds")
|
else if (extension == ".3ds" || extension == ".cci")
|
||||||
success = loadNCSD(path, ROMType::NCSD);
|
success = loadNCSD(path, ROMType::NCSD);
|
||||||
else if (extension == ".cxi" || extension == ".app")
|
else if (extension == ".cxi" || extension == ".app")
|
||||||
success = loadNCSD(path, ROMType::CXI);
|
success = loadNCSD(path, ROMType::CXI);
|
||||||
@@ -463,4 +463,4 @@ void Emulator::pollHttpServer() {
|
|||||||
httpServer.pendingAction.notify_all();
|
httpServer.pendingAction.notify_all();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user