mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 18:39:00 +00:00
Fixed iteration typo
This commit is contained in:
parent
3768473cd6
commit
03833f9e11
1 changed files with 2 additions and 2 deletions
|
@ -36,9 +36,9 @@ CRestart::Initialise()
|
||||||
|
|
||||||
for (int i = 0; i < NUM_RESTART_POINTS; i++) {
|
for (int i = 0; i < NUM_RESTART_POINTS; i++) {
|
||||||
HospitalRestartPoints[i] = CVector(0.0f, 0.0f, 0.0f);
|
HospitalRestartPoints[i] = CVector(0.0f, 0.0f, 0.0f);
|
||||||
HospitalRestartHeadings[0] = 0.0f;
|
HospitalRestartHeadings[i] = 0.0f;
|
||||||
PoliceRestartPoints[i] = CVector(0.0f, 0.0f, 0.0f);
|
PoliceRestartPoints[i] = CVector(0.0f, 0.0f, 0.0f);
|
||||||
PoliceRestartHeadings[0] = 0.0f;
|
PoliceRestartHeadings[i] = 0.0f;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue