mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-21 04:49:14 +12:00
[FS] Use std::string over C strings for archive names
This commit is contained in:
parent
e1ac986009
commit
3d1aafa7dd
4 changed files with 6 additions and 5 deletions
|
@ -7,7 +7,7 @@ public:
|
|||
SaveDataArchive(Memory& mem) : ArchiveBase(mem) {}
|
||||
|
||||
u64 getFreeBytes() override { return 0; }
|
||||
const char* name() override { return "SaveData"; }
|
||||
std::string name() override { return "SaveData"; }
|
||||
|
||||
bool openFile(const FSPath& path) override;
|
||||
ArchiveBase* openArchive(const FSPath& path) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue