Correct typo and format of comments
This commit is contained in:
parent
4b7b1b0d4a
commit
4e617d2ca2
1 changed files with 3 additions and 3 deletions
|
@ -327,11 +327,11 @@ public:
|
||||||
static Physics2DServer *init_server() {
|
static Physics2DServer *init_server() {
|
||||||
|
|
||||||
int tm = GLOBAL_DEF("physics/2d/thread_model", 1);
|
int tm = GLOBAL_DEF("physics/2d/thread_model", 1);
|
||||||
if (tm == 0) //single unsafe
|
if (tm == 0) // single unsafe
|
||||||
return memnew(T);
|
return memnew(T);
|
||||||
else if (tm == 1) //single saef
|
else if (tm == 1) // single safe
|
||||||
return memnew(Physics2DServerWrapMT(memnew(T), false));
|
return memnew(Physics2DServerWrapMT(memnew(T), false));
|
||||||
else //single unsafe
|
else // multi threaded
|
||||||
return memnew(Physics2DServerWrapMT(memnew(T), true));
|
return memnew(Physics2DServerWrapMT(memnew(T), true));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue