mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-14 11:54:44 +00:00
GTA_BRIDGE and GTA_TRAIN defines
This commit is contained in:
parent
702da55ec9
commit
67467f15d1
7 changed files with 65 additions and 4 deletions
|
@ -2740,7 +2740,11 @@ bool CCarCtrl::ThisRoadObjectCouldMove(int16 mi)
|
|||
|
||||
bool CCarCtrl::MapCouldMoveInThisArea(float x, float y)
|
||||
{
|
||||
#ifdef GTA_BRIDGE // actually they forgot that in VC...
|
||||
// bridge moves up and down
|
||||
return x > -342.0f && x < -219.0f &&
|
||||
y > -677.0f && y < -580.0f;
|
||||
#else
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue