mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 01:49:00 +00:00
ps2 fix
This commit is contained in:
parent
8593fff48b
commit
9bb34fab25
2 changed files with 4 additions and 0 deletions
|
@ -351,7 +351,9 @@ public:
|
||||||
void LocateCharObjectCommand(int32, uint32*);
|
void LocateCharObjectCommand(int32, uint32*);
|
||||||
#endif
|
#endif
|
||||||
void LocateCarCommand(int32, uint32*);
|
void LocateCarCommand(int32, uint32*);
|
||||||
|
#if GTA_VERSION > GTA3_PS2_160
|
||||||
void LocateSniperBulletCommand(int32, uint32*);
|
void LocateSniperBulletCommand(int32, uint32*);
|
||||||
|
#endif
|
||||||
void PlayerInAreaCheckCommand(int32, uint32*);
|
void PlayerInAreaCheckCommand(int32, uint32*);
|
||||||
void PlayerInAngledAreaCheckCommand(int32, uint32*);
|
void PlayerInAngledAreaCheckCommand(int32, uint32*);
|
||||||
void CharInAreaCheckCommand(int32, uint32*);
|
void CharInAreaCheckCommand(int32, uint32*);
|
||||||
|
|
|
@ -734,6 +734,7 @@ void CRunningScript::LocateCarCommand(int32 command, uint32* pIp)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if GTA_VERSION > GTA3_PS2_160
|
||||||
void CRunningScript::LocateSniperBulletCommand(int32 command, uint32* pIp)
|
void CRunningScript::LocateSniperBulletCommand(int32 command, uint32* pIp)
|
||||||
{
|
{
|
||||||
bool b3D, result, debug;
|
bool b3D, result, debug;
|
||||||
|
@ -772,6 +773,7 @@ void CRunningScript::LocateSniperBulletCommand(int32 command, uint32* pIp)
|
||||||
CTheScripts::DrawDebugSquare(X - dX, Y - dY, X + dX, Y + dY);
|
CTheScripts::DrawDebugSquare(X - dX, Y - dY, X + dX, Y + dY);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void CRunningScript::PlayerInAreaCheckCommand(int32 command, uint32* pIp)
|
void CRunningScript::PlayerInAreaCheckCommand(int32 command, uint32* pIp)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue