summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/ISOFile.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2016-06-25 18:45:53 +0200
committerGitHub <noreply@github.com>2016-06-25 18:45:53 +0200
commit10682dbf5843bcf55cda7db4bc4e5acaee556648 (patch)
treee3c3fba5f61c0bf3316a257d7d791849a7fd45de /Source/Core/DolphinWX/ISOFile.cpp
parent64cf74abb4158ffabe8b5dce3c1a4d42a82b054f (diff)
parent1878605d77d38861307027ae5bcd6ca131c8266e (diff)
Merge pull request #3934 from JosJuice/comment-formatting
Undo some comment formatting changes from b5104a7
Diffstat (limited to 'Source/Core/DolphinWX/ISOFile.cpp')
-rw-r--r--Source/Core/DolphinWX/ISOFile.cpp15
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;