From f902136b6af53ec75eb3df44f06e0d0972a7e7f6 Mon Sep 17 00:00:00 2001 From: Nikolay Korolev Date: Fri, 8 May 2020 18:50:16 +0300 Subject: fix --- src/control/CarCtrl.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/control/CarCtrl.cpp b/src/control/CarCtrl.cpp index ed14c6a0..66e29b6c 100644 --- a/src/control/CarCtrl.cpp +++ b/src/control/CarCtrl.cpp @@ -597,8 +597,7 @@ CCarCtrl::ChooseCarRating(CZoneInfo* pZoneInfo) int32 CCarCtrl::ChooseModel(CZoneInfo* pZone, CVector* pPos, int* pClass) { int32 model = -1; - int i; - for (i = 0; i < 10 && (model == -1 || !CStreaming::HasModelLoaded(model)); i++) { + for (int i = 0; i < 10 && (model == -1 || !CStreaming::HasModelLoaded(model)); i++) { int rnd = CGeneral::GetRandomNumberInRange(0, 1000); if (rnd < pZone->copThreshold) { @@ -607,15 +606,16 @@ CCarCtrl::ChooseModel(CZoneInfo* pZone, CVector* pPos, int* pClass) { continue; } - for (i = 0; i < NUM_GANG_CAR_CLASSES; i++) { + int j; + for (j = 0; j < NUM_GANG_CAR_CLASSES; j++) { if (rnd < pZone->gangThreshold[i]) { - *pClass = i + FIRST_GANG_CAR_RATING; - model = ChooseGangCarModel(i); + *pClass = j + FIRST_GANG_CAR_RATING; + model = ChooseGangCarModel(j); break; } } - if (i != NUM_GANG_CAR_CLASSES) + if (j != NUM_GANG_CAR_CLASSES) continue; *pClass = ChooseCarRating(pZone); -- cgit v1.2.3