You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Fix multiple missing UTF-8 decoding.
This commit is contained in:
@@ -362,16 +362,16 @@ void GDScriptTest::error_handler(void *p_this, const char *p_function, const cha
|
||||
}
|
||||
|
||||
builder.append("\n>> on function: ");
|
||||
builder.append(p_function);
|
||||
builder.append(String::utf8(p_function));
|
||||
builder.append("()\n>> ");
|
||||
builder.append(String(p_file).trim_prefix(self->base_dir));
|
||||
builder.append(String::utf8(p_file).trim_prefix(self->base_dir));
|
||||
builder.append("\n>> ");
|
||||
builder.append(itos(p_line));
|
||||
builder.append("\n>> ");
|
||||
builder.append(p_error);
|
||||
builder.append(String::utf8(p_error));
|
||||
if (strlen(p_explanation) > 0) {
|
||||
builder.append("\n>> ");
|
||||
builder.append(p_explanation);
|
||||
builder.append(String::utf8(p_explanation));
|
||||
}
|
||||
builder.append("\n");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user