Merge pull request #22230 from hrydgard/sceFont-install-fonts

Install sceFont fonts off the disc when we don't have them in the NAND folder
This commit is contained in:
Henrik Rydgård
2026-09-05 11:46:56 -06:00
committed by GitHub
10 changed files with 204 additions and 30 deletions
+5
View File
@@ -349,6 +349,11 @@ const ISOFileSystem::TreeEntry *ISOFileSystem::GetFromPath(std::string_view path
if (pathLength <= pathIndex)
return treeroot;
if (!treeroot) {
// The constructor gave up - no ISO9660 volume descriptor, or it wouldn't read.
return nullptr;
}
TreeEntry *entry = treeroot;
while (true) {
if (!entry->valid) {