This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
test: use 0 instead of NULL to fix the X360 build.
legacy
Sam Hocevar
sam
12 years ago
parent
e82c65aa18
commit
92308c4e81
1 changed files
with
5 additions
and
5 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+5
-5
test/Physics/LolPhysics.h
+ 5
- 5
test/Physics/LolPhysics.h
View File
@@ -25,11 +25,11 @@ class Simulation
{
public:
Simulation() :
m_broadphase(
NULL
),
m_collision_configuration(
NULL
),
m_dispatcher(
NULL
),
m_solver(
NULL
),
m_dynamics_world(
NULL
)
m_broadphase(
0
),
m_collision_configuration(
0
),
m_dispatcher(
0
),
m_solver(
0
),
m_dynamics_world(
0
)
{
}
~Simulation()
Write
Preview
Loading…
Cancel
Save