summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/Src/BannerLoaderGC.cpp
diff options
context:
space:
mode:
authorhyperiris <hyperiris@gmail.com>2009-02-07 17:31:35 +0000
committerhyperiris <hyperiris@gmail.com>2009-02-07 17:31:35 +0000
commitd5bcb81872b35e55d68e3369a00af1596137f4c4 (patch)
treebcaa5cb31bb4f012174e33969cb09ef470e9a956 /Source/Core/DiscIO/Src/BannerLoaderGC.cpp
parentd4c9a8a5fc15a1946fa6420f8ec77996ad94fe79 (diff)
this should be OK: display some default info when no save exist
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2133 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO/Src/BannerLoaderGC.cpp')
-rw-r--r--Source/Core/DiscIO/Src/BannerLoaderGC.cpp12
1 files changed, 1 insertions, 11 deletions
diff --git a/Source/Core/DiscIO/Src/BannerLoaderGC.cpp b/Source/Core/DiscIO/Src/BannerLoaderGC.cpp
index d4071b7dd1..28e8378db4 100644
--- a/Source/Core/DiscIO/Src/BannerLoaderGC.cpp
+++ b/Source/Core/DiscIO/Src/BannerLoaderGC.cpp
@@ -94,11 +94,6 @@ CBannerLoaderGC::GetBanner(u32* _pBannerImage)
bool
CBannerLoaderGC::GetName(std::string _rName[])
{
- for (int i = 0; i < 6; i++)
- {
- _rName[i] = "no name";
- }
-
bool returnCode = false;
if (!IsValid())
@@ -143,7 +138,7 @@ CBannerLoaderGC::GetName(std::string _rName[])
bool
CBannerLoaderGC::GetCompany(std::string& _rCompany)
{
- _rCompany = "invalid images";
+ _rCompany = "N/A";
if (!IsValid())
{
@@ -164,11 +159,6 @@ CBannerLoaderGC::GetCompany(std::string& _rCompany)
bool
CBannerLoaderGC::GetDescription(std::string* _rDescription)
{
- for (int i = 0; i< 6; i++)
- {
- _rDescription[i] = "";
- }
-
bool returnCode = false;
if (!IsValid())