Instead of flash0directory, have a NAND subdirectory under PSP, where you can keep flash0, flash1 etc.

Also make it configurable via command line.
This commit is contained in:
Henrik Rydgård
2026-08-24 09:53:37 +02:00
parent 786a1530de
commit 78ef1eae82
14 changed files with 36 additions and 36 deletions
+1
View File
@@ -195,6 +195,7 @@ int MetaFileSystem::MapFilePath(std::string_view _inpath, std::string *outpath,
// Special handling: host0:command.txt (as seen in Super Monkey Ball Adventures, for example)
// appears to mean the current directory on the UMD.
// Actually, not sure if this is still needed. It doesn't make a whole lot of sense.
if (startsWithNoCase(inpath.c_str(), "host0:") && !host0Mapped_) {
inpath = "umd0:" + inpath.substr(strlen("host0:"));
}