mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-01 04:37:52 +00:00
Loader: Added stubbed detection of CXI and CCI files.
This commit is contained in:
parent
10ae45b5e7
commit
2d7c46c874
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue