diff options
author | George Marques <george@gmarqu.es> | 2017-11-14 20:01:45 -0200 |
---|---|---|
committer | George Marques <george@gmarqu.es> | 2017-11-16 21:56:57 -0200 |
commit | 1d12470a78d31a054aefc7f7c9a863db24b09986 (patch) | |
tree | d020f85566491ff2975bf8084a8ad68f8b66d9ee /core/script_debugger_remote.cpp | |
parent | b44cb4e3b9b573a3cbbd6f71aff81e6c3465d84b (diff) | |
download | redot-engine-1d12470a78d31a054aefc7f7c9a863db24b09986.tar.gz |
Add print_error function, akin to print_line
Diffstat (limited to 'core/script_debugger_remote.cpp')
-rw-r--r-- | core/script_debugger_remote.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/script_debugger_remote.cpp b/core/script_debugger_remote.cpp index f77fb116c7..5655a4d5e4 100644 --- a/core/script_debugger_remote.cpp +++ b/core/script_debugger_remote.cpp @@ -832,7 +832,7 @@ void ScriptDebuggerRemote::send_message(const String &p_message, const Array &p_ mutex->unlock(); } -void ScriptDebuggerRemote::_print_handler(void *p_this, const String &p_string) { +void ScriptDebuggerRemote::_print_handler(void *p_this, const String &p_string, bool p_error) { ScriptDebuggerRemote *sdr = (ScriptDebuggerRemote *)p_this; |