summaryrefslogtreecommitdiff
path: root/servers
diff options
context:
space:
mode:
authorIAmActuallyCthulhu <iamactuallycthulhu@gmail.com>2019-07-30 16:29:41 -0500
committerIAmActuallyCthulhu <iamactuallycthulhu@gmail.com>2019-07-30 16:43:07 -0500
commit4e617d2ca29b4efce7f8360dfedce627b0731028 (patch)
tree4614c12eb2e6655c069b6de99875407f29678459 /servers
parent4b7b1b0d4acf8d49505a839a0aa745ce60641545 (diff)
Correct typo and format of comments
Diffstat (limited to 'servers')
-rw-r--r--servers/physics_2d/physics_2d_server_wrap_mt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/servers/physics_2d/physics_2d_server_wrap_mt.h b/servers/physics_2d/physics_2d_server_wrap_mt.h
index b61e1faad2..33a184ba3f 100644
--- a/servers/physics_2d/physics_2d_server_wrap_mt.h
+++ b/servers/physics_2d/physics_2d_server_wrap_mt.h
@@ -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));
}