mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-15 20:40:05 +00:00
loader: Recognize filename '00' as NCA
Needed to avoid mismatch filetype warnings on split NAND NCAs
This commit is contained in:
parent
42114e1df4
commit
5b4119fa7f
@ -46,6 +46,8 @@ FileType IdentifyFile(FileSys::VirtualFile file) {
|
||||
FileType GuessFromFilename(const std::string& name) {
|
||||
if (name == "main")
|
||||
return FileType::DeconstructedRomDirectory;
|
||||
if (name == "00")
|
||||
return FileType::NCA;
|
||||
|
||||
const std::string extension =
|
||||
Common::ToLower(std::string(FileUtil::GetExtensionFromFilename(name)));
|
||||
|
Loading…
Reference in New Issue
Block a user