diff options
author | Kevin Choi <code.kchoi@gmail.com> | 2015-05-31 01:37:56 -0400 |
---|---|---|
committer | Kevin Choi <code.kchoi@gmail.com> | 2015-05-31 01:37:56 -0400 |
commit | 6813a1f1e1104c62f9cd4f3848ca0030855911ba (patch) | |
tree | 2ce9353b114574d40465129b7e3afd4117bbb008 /platform/osx/os_osx.mm | |
parent | ec93668f8d652f826b6e89861746bf655ec29234 (diff) | |
parent | d5348eebdc7228f7836582cd9bd4ed4f5fd59348 (diff) |
Merge pull request #2 from okamstudio/master
pull
Diffstat (limited to 'platform/osx/os_osx.mm')
-rw-r--r-- | platform/osx/os_osx.mm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/osx/os_osx.mm b/platform/osx/os_osx.mm index eb2a12cdef..e2ff8d1116 100644 --- a/platform/osx/os_osx.mm +++ b/platform/osx/os_osx.mm @@ -1015,7 +1015,8 @@ void OS_OSX::initialize(const VideoMode& p_desired,int p_video_driver,int p_audi // physics_server = memnew( PhysicsServerSW ); physics_server->init(); - physics_2d_server = memnew( Physics2DServerSW ); + //physics_2d_server = memnew( Physics2DServerSW ); + physics_2d_server = Physics2DServerWrapMT::init_server<Physics2DServerSW>(); physics_2d_server->init(); input = memnew( InputDefault ); |