diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-09-25 10:21:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-25 10:21:35 +0200 |
commit | ab644de1d84c4e233d2b718a34529cf0cbd06e04 (patch) | |
tree | cb1b117715cd714179d07427505a94c35de96675 | |
parent | af053ecf4de0b281a51a3b82a17df5ea581b793c (diff) | |
parent | 1ed5e75dd7911ba3b2ef6db04feed372a89807e8 (diff) |
Merge pull request #11571 from ISylvox/phyisics-to-physics
Remove print_line in Physics2DServerWrapMT::init()
[ci skip]
-rw-r--r-- | servers/physics_2d/physics_2d_server_wrap_mt.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/servers/physics_2d/physics_2d_server_wrap_mt.cpp b/servers/physics_2d/physics_2d_server_wrap_mt.cpp index a4e6abfd45..f8f3b620d4 100644 --- a/servers/physics_2d/physics_2d_server_wrap_mt.cpp +++ b/servers/physics_2d/physics_2d_server_wrap_mt.cpp @@ -109,16 +109,13 @@ void Physics2DServerWrapMT::init() { if (create_thread) { step_sem = Semaphore::create(); - print_line("CREATING PHYSICS 2D THREAD"); //OS::get_singleton()->release_rendering_thread(); if (create_thread) { thread = Thread::create(_thread_callback, this); - print_line("STARTING PHYISICS 2D THREAD"); } while (!step_thread_up) { OS::get_singleton()->delay_usec(1000); } - print_line("DONE PHYSICS 2D THREAD"); } else { physics_2d_server->init(); |