mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-05-14 07:45:06 +12:00
Add support for .ncch files
This commit is contained in:
parent
b85dba277f
commit
4629314961
3 changed files with 3 additions and 3 deletions
|
@ -249,7 +249,7 @@ bool Emulator::loadROM(const std::filesystem::path& path) {
|
|||
success = loadELF(path);
|
||||
else if (extension == ".3ds" || extension == ".cci")
|
||||
success = loadNCSD(path, ROMType::NCSD);
|
||||
else if (extension == ".cxi" || extension == ".app")
|
||||
else if (extension == ".cxi" || extension == ".app" || extension == ".ncch")
|
||||
success = loadNCSD(path, ROMType::CXI);
|
||||
else if (extension == ".3dsx")
|
||||
success = load3DSX(path);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue