COMMON: Fix DumpFile path creation at opening

Path rework broke it badly
This commit is contained in:
Le Philousophe 2024-01-15 18:52:36 +01:00
parent 803ae263da
commit e51e93c3de

View File

@ -166,11 +166,10 @@ bool DumpFile::open(const Path &filename, bool createPath) {
StringArray components = dirname.splitComponents();
Common::Path subpath;
for (StringArray::iterator it = components.end() - 1; it != components.begin(); --it) {
subpath.joinInPlace(*it, Common::Path::kNoSeparator);
if (subpath.empty()) {
continue;
}
for (StringArray::iterator it = components.begin(); it != components.end(); ++it) {
subpath.appendInPlace(*it, Common::Path::kNoSeparator);
// Add a trailing path separator
subpath.appendInPlace("/");
node = g_system->getFilesystemFactory()->makeFileNodePath(subpath.toString(Common::Path::kNativeSeparator));
if (node->exists()) {
delete node;