diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-03-16 18:55:34 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-03-16 18:55:34 +0100 |
commit | 05c95837cb6510dbdfa62af437d4ad442a42d73c (patch) | |
tree | d655ec71119ffc3343b16d90e9a61496d12d53e9 | |
parent | 2aa832f415a0132f66d58e54fb1386420cbb0c7f (diff) |
Tweak the invalid Unicode error message to be more descriptive
This closes #28503.
-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 1d4d9c2dfd..da089dce40 100644 --- a/core/ustring.cpp +++ b/core/ustring.cpp @@ -1402,7 +1402,7 @@ String String::utf8(const char *p_utf8, int p_len) { bool String::parse_utf8(const char *p_utf8, int p_len) { -#define _UNICERROR(m_err) print_line("Unicode error: " + String(m_err)); +#define _UNICERROR(m_err) print_line("Unicode parsing error: " + String(m_err) + ". Is the string valid UTF-8?"); if (!p_utf8) return true; |