And an another one.

This commit is contained in:
Relintai 2022-08-16 00:14:52 +02:00
parent 5f6c223dc4
commit b796390962

View File

@ -1237,7 +1237,7 @@ bool String::is_word_at(const int index, const char *p_str) const {
return false; return false;
} }
if (operator[](iind) != (CharType)str[i]) { if (operator[](iind) != (CharType)p_str[i]) {
return false; return false;
} }