diff options
Diffstat (limited to 'modules/bullet/collision_object_bullet.h')
| -rw-r--r-- | modules/bullet/collision_object_bullet.h | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/bullet/collision_object_bullet.h b/modules/bullet/collision_object_bullet.h index 42ba4aa907..25176458a7 100644 --- a/modules/bullet/collision_object_bullet.h +++ b/modules/bullet/collision_object_bullet.h @@ -76,20 +76,20 @@ public:  		bool active;  		ShapeWrapper() : -				shape(NULL), -				bt_shape(NULL), +				shape(nullptr), +				bt_shape(nullptr),  				active(true) {}  		ShapeWrapper(ShapeBullet *p_shape, const btTransform &p_transform, bool p_active) :  				shape(p_shape), -				bt_shape(NULL), +				bt_shape(nullptr),  				active(p_active) {  			set_transform(p_transform);  		}  		ShapeWrapper(ShapeBullet *p_shape, const Transform &p_transform, bool p_active) :  				shape(p_shape), -				bt_shape(NULL), +				bt_shape(nullptr),  				active(p_active) {  			set_transform(p_transform);  		}  |