mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-07-10 01:24:41 -06:00
No need to convert explicitly
This commit is contained in:
parent
b5153a6689
commit
9f2b5bf0f8
@ -4,7 +4,7 @@
|
||||
FSPath operator/ (const FSPath& lhs, const FSPath& rhs)
|
||||
{
|
||||
FSPath res{lhs};
|
||||
res /= FSPath{rhs};
|
||||
res /= rhs;
|
||||
return res;
|
||||
}
|
||||
|
||||
@ -56,7 +56,7 @@ FSPath& FSPath::operator/= (const FSPath & rhs)
|
||||
}
|
||||
}
|
||||
|
||||
*this = FSPath(correctedPath);
|
||||
*this = correctedPath;
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user