mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
COMMON: Fix DumpFile path creation at opening
Path rework broke it badly
This commit is contained in:
parent
803ae263da
commit
e51e93c3de
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user