Merge pull request #7976 from BytesGalore/master

loader: log the type of mismatching file-extension
This commit is contained in:
bunnei 2022-04-22 23:55:07 -07:00 committed by GitHub
commit 04afcfe115
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -261,7 +261,8 @@ std::unique_ptr<AppLoader> GetLoader(Core::System& system, FileSys::VirtualFile
// Special case: 00 is either a NCA or NAX.
if (type != filename_type && !(file->GetName() == "00" && type == FileType::NAX)) {
LOG_WARNING(Loader, "File {} has a different type than its extension.", file->GetName());
LOG_WARNING(Loader, "File {} has a different type ({}) than its extension.",
file->GetName(), GetFileTypeString(type));
if (FileType::Unknown == type) {
type = filename_type;
}