fix review comments

This commit is contained in:
B3n30 2020-03-15 18:57:29 +01:00
parent 391580c658
commit 2465fd423a
2 changed files with 2 additions and 4 deletions

View file

@ -137,7 +137,6 @@ Loader::ResultStatus NCCHContainer::LoadHeader() {
if (has_header)
return Loader::ResultStatus::Success;
if (!file.IsOpen()) {
return Loader::ResultStatus::Error;
}

View file

@ -36,9 +36,8 @@
namespace {
bool HasSupportedFileExtension(std::string path) {
static const std::array<std::string, 7> extensions = {{".3ds", ".3dsx", ".elf", ".axf", ".cci",
".cxi"
".app"}};
static const std::array<std::string, 7> extensions = {
{".3ds", ".3dsx", ".elf", ".axf", ".cci", ".cxi", ".app"}};
const auto file_ext = FileUtil::GetExtensionFromFilename(path);
return std::find(extensions.begin(), extensions.end(), file_ext) != extensions.end();
}