Removed print_line in Physics2DServerWrapMT::init()
This commit is contained in:
parent
14b4ad931f
commit
1ed5e75dd7
1 changed files with 0 additions and 3 deletions
|
@ -109,16 +109,13 @@ void Physics2DServerWrapMT::init() {
|
||||||
if (create_thread) {
|
if (create_thread) {
|
||||||
|
|
||||||
step_sem = Semaphore::create();
|
step_sem = Semaphore::create();
|
||||||
print_line("CREATING PHYSICS 2D THREAD");
|
|
||||||
//OS::get_singleton()->release_rendering_thread();
|
//OS::get_singleton()->release_rendering_thread();
|
||||||
if (create_thread) {
|
if (create_thread) {
|
||||||
thread = Thread::create(_thread_callback, this);
|
thread = Thread::create(_thread_callback, this);
|
||||||
print_line("STARTING PHYISICS 2D THREAD");
|
|
||||||
}
|
}
|
||||||
while (!step_thread_up) {
|
while (!step_thread_up) {
|
||||||
OS::get_singleton()->delay_usec(1000);
|
OS::get_singleton()->delay_usec(1000);
|
||||||
}
|
}
|
||||||
print_line("DONE PHYSICS 2D THREAD");
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
physics_2d_server->init();
|
physics_2d_server->init();
|
||||||
|
|
Loading…
Reference in a new issue