Merge pull request #853 from erorcun/miami

PlayerPed and "Redefine controls" menu done, fixes
This commit is contained in:
erorcun 2020-12-02 14:35:06 +03:00 committed by GitHub
commit 774aa1570f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 1048 additions and 711 deletions

View file

@ -9770,6 +9770,17 @@ CPed::Say(uint16 audio, int32 time)
}
}
void
CPed::SetWeaponLockOnTarget(CEntity *target)
{
if (m_pPointGunAt)
m_pPointGunAt->CleanUpOldReference(&m_pPointGunAt);
m_pPointGunAt = (CPed*)target;
if (target)
((CEntity*)target)->RegisterReference(&m_pPointGunAt);
}
#ifdef COMPATIBLE_SAVES
#define CopyFromBuf(buf, data) memcpy(&data, buf, sizeof(data)); SkipSaveBuf(buf, sizeof(data));
#define CopyToBuf(buf, data) memcpy(buf, &data, sizeof(data)); SkipSaveBuf(buf, sizeof(data));