diff options
author | Juan Linietsky <reduzio@gmail.com> | 2017-11-17 16:05:44 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-17 16:05:44 -0300 |
commit | ebbe2bd57235fcbd2edb82c05bb9d7d768b3e7ca (patch) | |
tree | 8525dd572373c91efe33568f3c1a8663c0ed8d1a /core/script_debugger_remote.cpp | |
parent | 0968c8d2f65f7ac6e0d6b3718ee1028b229b3353 (diff) | |
parent | b96ee28acd80230ee56000fad2a3ca15e461d5e2 (diff) | |
download | redot-engine-ebbe2bd57235fcbd2edb82c05bb9d7d768b3e7ca.tar.gz |
Merge pull request #12930 from vnen/gdscrit-output-print
Make tool scripts print on the editor Output panel
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; |