fix "could not find part of path" error when installing firmware

This commit is contained in:
GreemDev 2025-11-23 19:33:07 -06:00
parent 7fdbfb7e2e
commit dbebdb60d5

View File

@ -548,6 +548,9 @@ namespace Ryujinx.HLE.FileSystem
new DirectoryInfo(registeredDirectory).Delete(true);
}
if (!Directory.Exists(temporaryDirectory))
return; // nothing to move
Directory.Move(temporaryDirectory, registeredDirectory);
LoadEntries();