diff options
| author | JosJuice <josjuice@gmail.com> | 2016-06-25 18:07:10 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2016-06-25 18:07:10 +0200 |
| commit | 1878605d77d38861307027ae5bcd6ca131c8266e (patch) | |
| tree | e3c3fba5f61c0bf3316a257d7d791849a7fd45de /Source/Core/DolphinWX/ISOFile.cpp | |
| parent | 64cf74abb4158ffabe8b5dce3c1a4d42a82b054f (diff) | |
Undo some comment formatting changes from b5104a7
Diffstat (limited to 'Source/Core/DolphinWX/ISOFile.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/ISOFile.cpp | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/Source/Core/DolphinWX/ISOFile.cpp b/Source/Core/DolphinWX/ISOFile.cpp index 95b9a02e2a..2ec148ef16 100644 --- a/Source/Core/DolphinWX/ISOFile.cpp +++ b/Source/Core/DolphinWX/ISOFile.cpp @@ -47,8 +47,7 @@ static std::string GetLanguageString(DiscIO::IVolume::ELanguage language, if (it != end) return it->second; - // English tends to be a good fallback when the requested language isn't - // available + // English tends to be a good fallback when the requested language isn't available if (language != DiscIO::IVolume::ELanguage::LANGUAGE_ENGLISH) { it = strings.find(DiscIO::IVolume::ELanguage::LANGUAGE_ENGLISH); @@ -150,16 +149,14 @@ GameListItem::GameListItem(const std::string& _rFileName, std::string path, name; SplitPath(m_FileName, &path, &name, nullptr); - // A bit like the Homebrew Channel icon, except there can be multiple files in - // a folder with their - // own icons. - // Useful for those who don't want to have a Homebrew Channel-style folder - // structure. + // A bit like the Homebrew Channel icon, except there can be multiple files + // in a folder with their own icons. Useful for those who don't want to have + // a Homebrew Channel-style folder structure. if (ReadPNGBanner(path + name + ".png")) return; - // Homebrew Channel icon. Typical for DOLs and ELFs, but can be also used with - // volumes. + // Homebrew Channel icon. Typical for DOLs and ELFs, + // but can be also used with volumes. if (ReadPNGBanner(path + "icon.png")) return; |
