mirror of https://github.com/axmolengine/axmol.git
bool x = NULL => bool x = false, to silence Clang.
This commit is contained in:
parent
5a23190672
commit
0bef8d4325
|
@ -95,8 +95,8 @@ inline b2ChainShape::b2ChainShape()
|
||||||
m_radius = b2_polygonRadius;
|
m_radius = b2_polygonRadius;
|
||||||
m_vertices = NULL;
|
m_vertices = NULL;
|
||||||
m_count = 0;
|
m_count = 0;
|
||||||
m_hasPrevVertex = NULL;
|
m_hasPrevVertex = false;
|
||||||
m_hasNextVertex = NULL;
|
m_hasNextVertex = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue