Give CIA file type a name

Make `GetFileTypeString` return ‘CIA’ for CIA (CTR Importable
Archive) files.
This commit is contained in:
Benjamin Barenblat 2015-08-15 15:45:27 -04:00
parent 7cd5a653ff
commit cd8be1846b
No known key found for this signature in database
GPG Key ID: 9E730149EB91C53B
1 changed files with 2 additions and 0 deletions

View File

@ -77,6 +77,8 @@ static const char* GetFileTypeString(FileType type) {
return "NCSD";
case FileType::CXI:
return "NCCH";
case FileType::CIA:
return "CIA";
case FileType::ELF:
return "ELF";
case FileType::THREEDSX: