aboutsummaryrefslogtreecommitdiff
path: root/core/print_string.cpp
diff options
context:
space:
mode:
authorDaniel J. Ramirez2016-06-18 18:01:06 -0500
committerDaniel J. Ramirez2016-06-18 18:01:06 -0500
commit422fac5066b704cb2bf251000869b5b94e188c85 (patch)
tree78c2345a616888d29e165a312a289efe6b616c20 /core/print_string.cpp
parent2ca331d95902266239b2ecbdef8dc5831bc40b6e (diff)
downloadgodot-422fac5066b704cb2bf251000869b5b94e188c85.tar.gz
godot-422fac5066b704cb2bf251000869b5b94e188c85.tar.zst
godot-422fac5066b704cb2bf251000869b5b94e188c85.zip
Diffstat (limited to 'core/print_string.cpp')
-rw-r--r--core/print_string.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/core/print_string.cpp b/core/print_string.cpp
index 6e57822e9..b6154f1cf 100644
--- a/core/print_string.cpp
+++ b/core/print_string.cpp
@@ -44,18 +44,15 @@ void add_print_handler(PrintHandlerList *p_handler) {
void remove_print_handler(PrintHandlerList *p_handler) {
- OS::get_singleton()->print("pre-removing print handler...\n");
_global_lock();
PrintHandlerList *prev = NULL;
PrintHandlerList *l = print_handler_list;
- OS::get_singleton()->print("removing print handler...\n");
while(l) {
if (l==p_handler) {
- OS::get_singleton()->print("found\n");
if (prev)
prev->next=l->next;
else