From 422fac5066b704cb2bf251000869b5b94e188c85 Mon Sep 17 00:00:00 2001 From: "Daniel J. Ramirez" Date: Sat, 18 Jun 2016 18:01:06 -0500 Subject: Removed lots of prints --- core/print_string.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'core') diff --git a/core/print_string.cpp b/core/print_string.cpp index 6e57822e94..b6154f1cf6 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 -- cgit v1.2.3