fix for error messages with memcard manager

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@910 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
LPFaint99 2008-10-18 16:17:59 +00:00
parent f257434b93
commit de4f4fc497
2 changed files with 2 additions and 2 deletions

View File

@ -641,7 +641,7 @@ u32 GCMemcard::CopyFrom(GCMemcard& source, u32 index)
return ret;
}
u32 GCMemcard::ImportGci(const char *fileName, const char *fileName2)
int GCMemcard::ImportGci(const char *fileName, const char *fileName2)
{
if (!mcdFile && !fileName2) return OPENFAIL;

View File

@ -170,7 +170,7 @@ public:
bool ExportGci(u32 index, const char* fileName);
// reads a .gci/.gcs/.sav file and calls ImportFile or saves out a gci file
u32 ImportGci(const char* fileName, const char* fileName2);
int ImportGci(const char* fileName, const char* fileName2);
// reads the banner image
bool ReadBannerRGBA8(u32 index, u32* buffer);