Skip to content

Commit 97ee2ee

Browse files
committed
Fix pure virtual function call
1 parent b1dd5c4 commit 97ee2ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xrGame/PhysicsShellHolder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ Fvector& CPhysicsShellHolder::ObjectPosition() { return Position(); }
458458
LPCSTR CPhysicsShellHolder::ObjectName() const { return cName().c_str(); }
459459
LPCSTR CPhysicsShellHolder::ObjectNameVisual() const { return cNameVisual().c_str(); }
460460
LPCSTR CPhysicsShellHolder::ObjectNameSect() const { return cNameSect().c_str(); }
461-
bool CPhysicsShellHolder::ObjectGetDestroy() const { return !!getDestroy(); }
461+
bool CPhysicsShellHolder::ObjectGetDestroy() const { return !!CGameObject::getDestroy(); }
462462
ICollisionHitCallback* CPhysicsShellHolder::ObjectGetCollisionHitCallback() { return get_collision_hit_callback(); }
463463
u16 CPhysicsShellHolder::ObjectID() const { return ID(); }
464464
ICollisionForm* CPhysicsShellHolder::ObjectCollisionModel()

0 commit comments

Comments
 (0)