mirror of https://github.com/PCSX2/pcsx2.git
MemoryCardFolder: Fix saved message displaying junk
This commit is contained in:
parent
a79ad44370
commit
286fabaddc
|
@ -1585,7 +1585,7 @@ bool FolderMemoryCard::WriteToFile(const u8* src, u32 adr, u32 dataLength)
|
|||
return false;
|
||||
}
|
||||
|
||||
std::string FolderMemoryCard::GetFolderName()
|
||||
const std::string& FolderMemoryCard::GetFolderName()
|
||||
{
|
||||
return m_folderName;
|
||||
}
|
||||
|
|
|
@ -363,7 +363,7 @@ public:
|
|||
|
||||
void WriteToFile(const std::string& filename);
|
||||
|
||||
std::string GetFolderName();
|
||||
const std::string& GetFolderName();
|
||||
|
||||
protected:
|
||||
struct EnumeratedFileEntry
|
||||
|
|
Loading…
Reference in New Issue