[FS] Use std::string over C strings for archive names

This commit is contained in:
wheremyfoodat 2022-12-12 03:50:38 +02:00
parent e1ac986009
commit 3d1aafa7dd
4 changed files with 6 additions and 5 deletions

View file

@ -7,7 +7,7 @@ public:
SelfNCCHArchive(Memory& mem) : ArchiveBase(mem) {}
u64 getFreeBytes() override { return 0; }
const char* name() override { return "SelfNCCH"; }
std::string name() override { return "SelfNCCH"; }
bool openFile(const FSPath& path) override;
ArchiveBase* openArchive(const FSPath& path) override;