diff --git a/src/engine/core/src/file/path.cpp b/src/engine/core/src/file/path.cpp index 8c4f14860..417760706 100644 --- a/src/engine/core/src/file/path.cpp +++ b/src/engine/core/src/file/path.cpp @@ -344,7 +344,7 @@ bool Path::operator==(gsl::span other) const #ifdef _WIN32 if (a.size() != b.size() || !a.asciiCompareNoCase(b.c_str())) { #else - if (a == b) { + if (a != b) { #endif return false; }