Fix filesystem working directory

This commit is contained in:
momo5502
2025-01-25 18:07:41 +01:00
parent c65636334e
commit 043617915e
2 changed files with 8 additions and 3 deletions

View File

@@ -211,7 +211,7 @@ class windows_path
bool empty() const
{
return !this->is_relative() && this->folders_.empty();
return this->is_relative() && this->folders_.empty();
}
private: