mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-10 06:28:14 -05:00
Loader: Added stubbed detection of CXI and CCI files.
This commit is contained in:
@ -120,6 +120,12 @@ FileType IdentifyFile(std::string &filename) {
|
||||
else if (!strcasecmp(extension.c_str(), ".axf")) {
|
||||
return FILETYPE_CTR_ELF; // TODO(bunnei): Do some filetype checking :p
|
||||
}
|
||||
else if (!strcasecmp(extension.c_str(), ".cxi")) {
|
||||
return FILETYPE_CTR_CXI; // TODO(bunnei): Do some filetype checking :p
|
||||
}
|
||||
else if (!strcasecmp(extension.c_str(), ".cci")) {
|
||||
return FILETYPE_CTR_CCI; // TODO(bunnei): Do some filetype checking :p
|
||||
}
|
||||
else if (!strcasecmp(extension.c_str(), ".bin")) {
|
||||
return FILETYPE_CTR_BIN;
|
||||
}
|
||||
|
Reference in New Issue
Block a user