early-access version 2694
This commit is contained in:
parent
e7beaa913d
commit
b810bd578c
2 changed files with 3 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
yuzu emulator early access
|
||||
=============
|
||||
|
||||
This is the source code for early-access 2693.
|
||||
This is the source code for early-access 2694.
|
||||
|
||||
## Legal Notice
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue