aboutsummaryrefslogtreecommitdiff
path: root/core/error_macros.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2017-11-26 19:00:53 +0100
committerRémi Verschelde2017-11-26 19:02:32 +0100
commitaf9c67db0c998bbd6f0de1ab0af98f9e615e6029 (patch)
tree018b3b3f6044e5c02cbaa1b44e01495e0013361c /core/error_macros.cpp
parent9cf44c1c53f03b67143e606ab3d56680d73ac2c9 (diff)
downloadgodot-af9c67db0c998bbd6f0de1ab0af98f9e615e6029.tar.gz
godot-af9c67db0c998bbd6f0de1ab0af98f9e615e6029.tar.zst
godot-af9c67db0c998bbd6f0de1ab0af98f9e615e6029.zip
Diffstat (limited to 'core/error_macros.cpp')
-rw-r--r--core/error_macros.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/error_macros.cpp b/core/error_macros.cpp
index 7d85aa900..a942b1dd2 100644
--- a/core/error_macros.cpp
+++ b/core/error_macros.cpp
@@ -101,6 +101,6 @@ void _err_print_error(const char *p_function, const char *p_file, int p_line, co
void _err_print_index_error(const char *p_function, const char *p_file, int p_line, int64_t p_index, int64_t p_size, const char *p_index_str, const char *p_size_str, bool fatal) {
String fstr(fatal ? "FATAL: " : "");
- String err(fstr + "Index" + p_index_str + "=" + itos(p_index) + " out of size (" + p_size_str + "=" + itos(p_size) + ")");
+ String err(fstr + "Index " + p_index_str + "=" + itos(p_index) + " out of size (" + p_size_str + "=" + itos(p_size) + ")");
_err_print_error(p_function, p_file, p_line, err.utf8().get_data());
}