Skip to content

Commit

Permalink
Fix pure virtual function call
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY committed Jan 22, 2018
1 parent b1dd5c4 commit 97ee2ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrGame/PhysicsShellHolder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ Fvector& CPhysicsShellHolder::ObjectPosition() { return Position(); }
LPCSTR CPhysicsShellHolder::ObjectName() const { return cName().c_str(); }
LPCSTR CPhysicsShellHolder::ObjectNameVisual() const { return cNameVisual().c_str(); }
LPCSTR CPhysicsShellHolder::ObjectNameSect() const { return cNameSect().c_str(); }
bool CPhysicsShellHolder::ObjectGetDestroy() const { return !!getDestroy(); }
bool CPhysicsShellHolder::ObjectGetDestroy() const { return !!CGameObject::getDestroy(); }
ICollisionHitCallback* CPhysicsShellHolder::ObjectGetCollisionHitCallback() { return get_collision_hit_callback(); }
u16 CPhysicsShellHolder::ObjectID() const { return ID(); }
ICollisionForm* CPhysicsShellHolder::ObjectCollisionModel()
Expand Down

0 comments on commit 97ee2ee

Please sign in to comment.