mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-13 13:00:33 +00:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
fbb1bc5b0d
4 changed files with 5 additions and 4 deletions
|
@ -40,9 +40,9 @@ CTrafficLights::DisplayActualLight(CEntity *ent)
|
|||
for(i = 1; i < 6; i++){
|
||||
assert(mi->Get2dEffect(i));
|
||||
yMin = min(yMin, mi->Get2dEffect(i)->pos.y);
|
||||
yMax = min(yMax, mi->Get2dEffect(i)->pos.y);
|
||||
yMax = max(yMax, mi->Get2dEffect(i)->pos.y);
|
||||
zMin = min(zMin, mi->Get2dEffect(i)->pos.z);
|
||||
zMax = min(zMax, mi->Get2dEffect(i)->pos.z);
|
||||
zMax = max(zMax, mi->Get2dEffect(i)->pos.z);
|
||||
}
|
||||
|
||||
CVector pos1, pos2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue