diff options
| author | Mat M <mathew1800@gmail.com> | 2018-03-31 14:02:40 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-31 14:02:40 -0400 |
| commit | a6f1c6e2e944e1c24823af4f34fc529eb8c59015 (patch) | |
| tree | f07d851cc9058a59a5850c4ca46c7b8b864e843b /Source/Android/jni/MainAndroid.cpp | |
| parent | df0d1c813866d9941833f823d49da7ffbccdd5e1 (diff) | |
| parent | c82da2b978278d79eef5d7389bc128f6b6a1579f (diff) | |
Merge pull request #6568 from leoetlino/dead
Remove dead code
Diffstat (limited to 'Source/Android/jni/MainAndroid.cpp')
| -rw-r--r-- | Source/Android/jni/MainAndroid.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index cafd87979a..3ded4f0750 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -281,14 +281,6 @@ static std::string GetTitle(std::string filename) if (titles.empty()) titles = pVolume->GetShortNames(); - /* - const bool is_wii_title = DiscIO::IsWii(pVolume->GetVolumeType()); - DiscIO::Language language = SConfig::GetInstance().GetCurrentLanguage(is_wii_title); - - auto it = titles.find(language); - if (it != end) - return it->second;*/ - auto end = titles.end(); // English tends to be a good fallback when the requested language isn't available @@ -322,14 +314,6 @@ static std::string GetDescription(std::string filename) { std::map<DiscIO::Language, std::string> descriptions = volume->GetDescriptions(); - /* - const bool is_wii_title = DiscIO::IsWii(pVolume->GetVolumeType()); - DiscIO::Language language = SConfig::GetInstance().GetCurrentLanguage(is_wii_title); - - auto it = descriptions.find(language); - if (it != end) - return it->second;*/ - auto end = descriptions.end(); // English tends to be a good fallback when the requested language isn't available |
