From b79639096208546c3e36bcec892d6f47e7d75def Mon Sep 17 00:00:00 2001 From: Relintai Date: Tue, 16 Aug 2022 00:14:52 +0200 Subject: [PATCH] And an another one. --- core/ustring.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ustring.cpp b/core/ustring.cpp index 54da56d48..7f80f436e 100644 --- a/core/ustring.cpp +++ b/core/ustring.cpp @@ -1237,7 +1237,7 @@ bool String::is_word_at(const int index, const char *p_str) const { return false; } - if (operator[](iind) != (CharType)str[i]) { + if (operator[](iind) != (CharType)p_str[i]) { return false; }