You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-28 16:07:14 +00:00
Fixed a string class bug
This commit is contained in:
@@ -65,7 +65,7 @@ bool CharString::operator<(const CharString &p_right) const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const char *this_str = get_data();
|
const char *this_str = get_data();
|
||||||
const char *that_str = get_data();
|
const char *that_str = p_right.get_data();
|
||||||
while (true) {
|
while (true) {
|
||||||
|
|
||||||
if (*that_str == 0 && *this_str == 0)
|
if (*that_str == 0 && *this_str == 0)
|
||||||
|
|||||||
Reference in New Issue
Block a user