diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2016-06-19 13:10:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-19 13:10:23 +0200 |
commit | e76f744c36234b5b4043c68c7d20a3d2e22d7a8c (patch) | |
tree | 9b049c7657e264063fb57419efe0137a9a72a10e /core | |
parent | df202127e3096c7e8b5188c4d29f38b03cae1658 (diff) | |
parent | 422fac5066b704cb2bf251000869b5b94e188c85 (diff) |
Merge pull request #5283 from djrm/remove_prints
Removed lots of prints
Diffstat (limited to 'core')
-rw-r--r-- | core/print_string.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
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 |