diff options
| author | nakeee <nakeee@gmail.com> | 2008-11-26 17:16:54 +0000 |
|---|---|---|
| committer | nakeee <nakeee@gmail.com> | 2008-11-26 17:16:54 +0000 |
| commit | d0cd722e8149bdc9c9cf17ec308aa874305754eb (patch) | |
| tree | 206cb516e6e649e50e6d8d6b0cc625b2dccdfb41 /Source/Core/DiscIO/Src/BannerLoaderWii.cpp | |
| parent | 1580d6ecf11e00585e2167f97687de181e95f80c (diff) | |
some cleanup
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1303 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO/Src/BannerLoaderWii.cpp')
| -rw-r--r-- | Source/Core/DiscIO/Src/BannerLoaderWii.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Source/Core/DiscIO/Src/BannerLoaderWii.cpp b/Source/Core/DiscIO/Src/BannerLoaderWii.cpp index 6eb9602cec..0eae9fd877 100644 --- a/Source/Core/DiscIO/Src/BannerLoaderWii.cpp +++ b/Source/Core/DiscIO/Src/BannerLoaderWii.cpp @@ -75,7 +75,7 @@ CBannerLoaderWii::GetBanner(u32* _pBannerImage) {
if (!IsValid())
{
- return(false);
+ return false;
}
SWiiBanner* pBanner = (SWiiBanner*)m_pBannerFile;
@@ -93,7 +93,7 @@ CBannerLoaderWii::GetBanner(u32* _pBannerImage) }
- return(true);
+ return true;
}
std::string
@@ -126,15 +126,15 @@ CBannerLoaderWii::GetName(std::string& _rName, int language) return true;
}
- _rName = m_Name;
- return(true);
+ return true;
}
bool
CBannerLoaderWii::GetCompany(std::string& _rCompany)
{
- return(false);
+ _rCompany = "N/A";
+ return true;
}
@@ -150,7 +150,7 @@ CBannerLoaderWii::GetDescription(std::string& _rDescription) return true;
}
- return(false);
+ return false;
}
@@ -197,7 +197,7 @@ CBannerLoaderWii::decode5A3(u16 val) a = 0xFF;
}
- return((a << 24) | (r << 16) | (g << 8) | b);
+ return ((a << 24) | (r << 16) | (g << 8) | b);
}
|
