1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-15 13:51:40 +00:00

Fix incorrect encoding used in _error_handler functions

Co-authored-by: Haoyu Qiu <timothyqiu32@gmail.com>
This commit is contained in:
bruvzg
2022-05-22 18:56:41 +08:00
committed by Haoyu Qiu
parent 6ef9075b2f
commit b5d5515a2b
3 changed files with 6 additions and 6 deletions

View File

@@ -484,7 +484,7 @@ void ScriptDebuggerRemote::_err_handler(void *ud, const char *p_func, const char
}
ScriptDebuggerRemote *sdr = (ScriptDebuggerRemote *)ud;
sdr->send_error(p_func, p_file, p_line, p_err, p_descr, p_type, si);
sdr->send_error(String::utf8(p_func), String::utf8(p_file), p_line, String::utf8(p_err), String::utf8(p_descr), p_type, si);
}
bool ScriptDebuggerRemote::_parse_live_edit(const Array &p_command) {