mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Remove unnecessary check when creating subdir chains
This commit is contained in:
parent
4793222fae
commit
011f73fedb
1 changed files with 1 additions and 3 deletions
|
@ -665,9 +665,7 @@ bool CreateFullPath(const Path &path) {
|
|||
Path curPath = root;
|
||||
for (auto part : parts) {
|
||||
curPath /= part;
|
||||
if (!File::Exists(curPath)) {
|
||||
File::CreateDir(curPath);
|
||||
}
|
||||
File::CreateDir(curPath);
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Add table
Reference in a new issue