mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
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
This commit is contained in:
@ -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())
|
||||
|
Reference in New Issue
Block a user