From 46293149616a1900005c0446386ac55ac0dc6f47 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Tue, 19 Nov 2024 00:48:42 +0200 Subject: [PATCH] Add support for .ncch files --- readme.md | 2 +- src/emulator.cpp | 2 +- src/panda_qt/main_window.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 3a33fc71..35715ac2 100644 --- a/readme.md +++ b/readme.md @@ -68,7 +68,7 @@ Simply drag and drop a ROM to the executable if supported, or invoke the executa
Panda3DS can load ROMs in the following formats: - .3ds/.cci -- .cxi/.app +- .cxi/.app/.ncch - .elf/.axf - .3dsx diff --git a/src/emulator.cpp b/src/emulator.cpp index 9b856425..b06ed621 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -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); diff --git a/src/panda_qt/main_window.cpp b/src/panda_qt/main_window.cpp index 28a704e6..93ce2613 100644 --- a/src/panda_qt/main_window.cpp +++ b/src/panda_qt/main_window.cpp @@ -189,7 +189,7 @@ void MainWindow::swapEmuBuffer() { void MainWindow::selectROM() { auto path = QFileDialog::getOpenFileName( this, tr("Select 3DS ROM to load"), QString::fromStdU16String(emu->getConfig().defaultRomPath.u16string()), - tr("Nintendo 3DS ROMs (*.3ds *.cci *.cxi *.app *.3dsx *.elf *.axf)") + tr("Nintendo 3DS ROMs (*.3ds *.cci *.cxi *.app *.ncch *.3dsx *.elf *.axf)") ); if (!path.isEmpty()) {