diff --git a/Engine/source/core/util/str.cpp b/Engine/source/core/util/str.cpp index b9f2ff14a..51a230e73 100644 --- a/Engine/source/core/util/str.cpp +++ b/Engine/source/core/util/str.cpp @@ -659,7 +659,7 @@ bool String::isEmpty() const bool String::isEmpty(const char* str) { - return src == 0 || src[0] == '\0'; + return str == 0 || str[0] == '\0'; } bool String::isShared() const