diff options
author | aap <aap@papnet.eu> | 2020-05-26 11:39:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-26 11:39:16 +0200 |
commit | 800d706935a9ef2ccd360584416a4b24d99be718 (patch) | |
tree | ea345190077017dc3f5783cbe531f193e11ec5f6 /src/weapons/Weapon.cpp | |
parent | eSurfaceType (diff) | |
parent | Ped.h include not needed (diff) | |
download | re3-800d706935a9ef2ccd360584416a4b24d99be718.tar re3-800d706935a9ef2ccd360584416a4b24d99be718.tar.gz re3-800d706935a9ef2ccd360584416a4b24d99be718.tar.bz2 re3-800d706935a9ef2ccd360584416a4b24d99be718.tar.lz re3-800d706935a9ef2ccd360584416a4b24d99be718.tar.xz re3-800d706935a9ef2ccd360584416a4b24d99be718.tar.zst re3-800d706935a9ef2ccd360584416a4b24d99be718.zip |
Diffstat (limited to 'src/weapons/Weapon.cpp')
-rw-r--r-- | src/weapons/Weapon.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/weapons/Weapon.cpp b/src/weapons/Weapon.cpp index 9edb3c51..eaf86bfc 100644 --- a/src/weapons/Weapon.cpp +++ b/src/weapons/Weapon.cpp @@ -817,7 +817,7 @@ CWeapon::FireInstantHit(CEntity *shooter, CVector *fireSource) CPed *threatAttack = (CPed*)shooterPed->m_pPointGunAt; if ( threatAttack->IsPed() ) { - threatAttack->m_pedIK.GetComponentPosition((RwV3d)target, PED_MID); + threatAttack->m_pedIK.GetComponentPosition(*(RwV3d *)&target, PED_MID); threatAttack->ReactToPointGun(shooter); } else @@ -1483,7 +1483,7 @@ CWeapon::FireShotgun(CEntity *shooter, CVector *fireSource) { CVector pos; if (shooterPed->m_pPointGunAt->IsPed()) { - ((CPed*)shooterPed->m_pPointGunAt)->m_pedIK.GetComponentPosition((RwV3d)pos, PED_MID); + ((CPed*)shooterPed->m_pPointGunAt)->m_pedIK.GetComponentPosition(*(RwV3d *)&pos, PED_MID); } else { pos = ((CPed*)shooterPed->m_pPointGunAt)->GetPosition(); } |