mirror of
https://github.com/GTAmodding/re3.git
synced 2024-12-26 03:35:40 +00:00
cannon fix
This commit is contained in:
parent
3d90a146d8
commit
0681fe3eca
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ void CWaterCannon::Render(void)
|
||||||
int16 pointA = m_nCur % NUM_SEGMENTPOINTS;
|
int16 pointA = m_nCur % NUM_SEGMENTPOINTS;
|
||||||
|
|
||||||
int16 pointB = pointA - 1;
|
int16 pointB = pointA - 1;
|
||||||
if ( (pointA - 1) < 0 )
|
if ( pointB < 0 )
|
||||||
pointB += NUM_SEGMENTPOINTS;
|
pointB += NUM_SEGMENTPOINTS;
|
||||||
|
|
||||||
bool bInit = false;
|
bool bInit = false;
|
||||||
|
|
Loading…
Reference in a new issue