diff options
| author | okamstudio | 2014-02-20 13:06:52 -0200 |
|---|---|---|
| committer | okamstudio | 2014-02-20 13:06:52 -0200 |
| commit | 4d5ec64a9d9c29c24632a29cdbc0c5aed50fa36a (patch) | |
| tree | 8ef0509f8f5c8aee9daec49f7d4b6c164ec089ce | |
| parent | 51c55b237b795fa4c085841dbf935c0bd103d5c7 (diff) | |
| parent | 339f332892fd09bba7218846a141c250ff4f429e (diff) | |
| download | godot-4d5ec64a9d9c29c24632a29cdbc0c5aed50fa36a.tar.gz godot-4d5ec64a9d9c29c24632a29cdbc0c5aed50fa36a.tar.zst godot-4d5ec64a9d9c29c24632a29cdbc0c5aed50fa36a.zip | |
Merge pull request #110 from vinzenz/108-fix
Fix for Issue #108
| -rw-r--r-- | core/ustring.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp index 336d8eea0..b0f06c6ab 100644 --- a/core/ustring.cpp +++ b/core/ustring.cpp @@ -2518,7 +2518,7 @@ bool String::begins_with(const char* p_string) const { } - return true; + return *p_string == 0; } |
