diff options
author | bunnei <bunneidev@gmail.com> | 2018-11-27 22:29:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-27 22:29:53 +0100 |
commit | bf055e14ab17a3fdc21be2be2c2ce852103980c7 (patch) | |
tree | e5d85c01c265e95dc6f46475d7d3c62bb02ddeb3 | |
parent | Merge pull request #1813 from ReinUsesLisp/fixup-clip (diff) | |
parent | control_metadata: Correct typo in language name (Portugese -> Portuguese) (diff) | |
download | yuzu-bf055e14ab17a3fdc21be2be2c2ce852103980c7.tar yuzu-bf055e14ab17a3fdc21be2be2c2ce852103980c7.tar.gz yuzu-bf055e14ab17a3fdc21be2be2c2ce852103980c7.tar.bz2 yuzu-bf055e14ab17a3fdc21be2be2c2ce852103980c7.tar.lz yuzu-bf055e14ab17a3fdc21be2be2c2ce852103980c7.tar.xz yuzu-bf055e14ab17a3fdc21be2be2c2ce852103980c7.tar.zst yuzu-bf055e14ab17a3fdc21be2be2c2ce852103980c7.zip |
-rw-r--r-- | src/core/file_sys/control_metadata.cpp | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/src/core/file_sys/control_metadata.cpp b/src/core/file_sys/control_metadata.cpp index c8fa912bf..e065e592f 100644 --- a/src/core/file_sys/control_metadata.cpp +++ b/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(), |