mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 11:17:32 +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,
|
const btVector3& end,
|
||||||
CharacterRayResult& result) const {
|
CharacterRayResult& result) const {
|
||||||
if (_world && _inWorld) {
|
if (_world && _inWorld) {
|
||||||
this->btGhostObject::rayTest(start, end, result);
|
btGhostObject::rayTest(start, end, result);
|
||||||
}
|
}
|
||||||
return result.hasHit();
|
return result.hasHit();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue