mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 19:55:07 +02:00
Remove unnecessary 'this->' in rayTest parent function call
This commit is contained in:
parent
d4d8f36e44
commit
baf0df05cd
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ bool CharacterGhostObject::rayTest(const btVector3& start,
|
|||
const btVector3& end,
|
||||
CharacterRayResult& result) const {
|
||||
if (_world && _inWorld) {
|
||||
this->btGhostObject::rayTest(start, end, result);
|
||||
btGhostObject::rayTest(start, end, result);
|
||||
}
|
||||
return result.hasHit();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue