Browse Source
Merge pull request #1812 from lioncash/nacp
control_metadata: Correct typo in language name (Portugese -> Portuguese)
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
17 additions and
7 deletions
-
src/core/file_sys/control_metadata.cpp
|
|
|
@ -8,13 +8,23 @@ |
|
|
|
|
|
|
|
namespace FileSys { |
|
|
|
|
|
|
|
const std::array<const char*, 15> LANGUAGE_NAMES = { |
|
|
|
"AmericanEnglish", "BritishEnglish", "Japanese", |
|
|
|
"French", "German", "LatinAmericanSpanish", |
|
|
|
"Spanish", "Italian", "Dutch", |
|
|
|
"CanadianFrench", "Portugese", "Russian", |
|
|
|
"Korean", "Taiwanese", "Chinese", |
|
|
|
}; |
|
|
|
const std::array<const char*, 15> LANGUAGE_NAMES{{ |
|
|
|
"AmericanEnglish", |
|
|
|
"BritishEnglish", |
|
|
|
"Japanese", |
|
|
|
"French", |
|
|
|
"German", |
|
|
|
"LatinAmericanSpanish", |
|
|
|
"Spanish", |
|
|
|
"Italian", |
|
|
|
"Dutch", |
|
|
|
"CanadianFrench", |
|
|
|
"Portuguese", |
|
|
|
"Russian", |
|
|
|
"Korean", |
|
|
|
"Taiwanese", |
|
|
|
"Chinese", |
|
|
|
}}; |
|
|
|
|
|
|
|
std::string LanguageEntry::GetApplicationName() const { |
|
|
|
return Common::StringFromFixedZeroTerminatedBuffer(application_name.data(), |
|
|
|
|