Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/demo/framework/test.d
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class Test : b2ContactListener
{
b2Vec2 gravity;
gravity.Set(0.0f, -10.0f);
m_world = new b2World(gravity);
m_world = b2World(gravity);
m_bomb = null;
m_textLine = 30;
m_mouseJoint = null;
Expand Down Expand Up @@ -608,7 +608,7 @@ protected:
int32 m_pointCount;
DestructionListener m_destructionListener;
int32 m_textLine;
b2World* m_world;
b2World m_world;
b2Body * m_bomb;
b2MouseJoint m_mouseJoint;
b2Vec2 m_bombSpawnPoint;
Expand Down