Merge pull request #415 from Dante38490/master

Loader: Add support for loading NCCH ROMs with the .3DS extension
This commit is contained in:
bunnei 2015-01-04 23:10:04 -05:00
commit 81e255a411
2 changed files with 3 additions and 1 deletions

View file

@ -45,6 +45,8 @@ FileType IdentifyFile(const std::string &filename) {
return FileType::CCI;
} else if (extension == ".bin") {
return FileType::BIN;
} else if (extension == ".3ds") {
return FileType::CCI;
} else if (extension == ".3dsx") {
return FileType::THREEDSX;
}