Merge pull request #3978 from zhaowenlan1779/remove-app-warning

core/loader: avoid "different type" warning for .app
This commit is contained in:
Weiyi Wang 2018-07-23 21:02:54 +03:00 committed by GitHub
commit 14878a17d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ FileType GuessFromExtension(const std::string& extension_) {
if (extension == ".cci" || extension == ".3ds")
return FileType::CCI;
if (extension == ".cxi")
if (extension == ".cxi" || extension == ".app")
return FileType::CXI;
if (extension == ".3dsx")