Correct typo and format of comments

This commit is contained in:
IAmActuallyCthulhu 2019-07-30 16:29:41 -05:00
parent 4b7b1b0d4a
commit 4e617d2ca2
No known key found for this signature in database
GPG key ID: 62B646AF25F1C246

View file

@ -327,11 +327,11 @@ public:
static Physics2DServer *init_server() {
int tm = GLOBAL_DEF("physics/2d/thread_model", 1);
if (tm == 0) //single unsafe
if (tm == 0) // single unsafe
return memnew(T);
else if (tm == 1) //single saef
else if (tm == 1) // single safe
return memnew(Physics2DServerWrapMT(memnew(T), false));
else //single unsafe
else // multi threaded
return memnew(Physics2DServerWrapMT(memnew(T), true));
}