mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +12:00
Undo oopsie
This commit is contained in:
parent
37ee5c5477
commit
28305b84e1
1 changed files with 2 additions and 2 deletions
|
@ -250,7 +250,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);
|
||||
|
@ -443,4 +443,4 @@ void Emulator::loadRenderdoc() {
|
|||
std::string capturePath = (std::filesystem::current_path() / "RenderdocCaptures").generic_string();
|
||||
Renderdoc::loadRenderdoc();
|
||||
Renderdoc::setOutputDir(capturePath, "");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue