From ddb18662cd25e51c52d7a3dd90615be4cd6c203e Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Thu, 13 Jul 2023 12:49:25 +0300 Subject: [PATCH] Add CCI support --- src/emulator.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emulator.cpp b/src/emulator.cpp index d755b89d..0ae60543 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -362,7 +362,7 @@ bool Emulator::loadROM(const std::filesystem::path& path) { if (extension == ".elf" || extension == ".axf") success = loadELF(path); - else if (extension == ".3ds") + else if (extension == ".3ds" || extension == ".cci") success = loadNCSD(path, ROMType::NCSD); else if (extension == ".cxi" || extension == ".app") success = loadNCSD(path, ROMType::CXI); @@ -463,4 +463,4 @@ void Emulator::pollHttpServer() { httpServer.pendingAction.notify_all(); } } -#endif \ No newline at end of file +#endif