Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
fix
  • Loading branch information
Nick007J committed May 8, 2020
1 parent 46d891b commit e30b538cd3c2a73a96a43eb8a9a22c6b2944cece
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/control/CarCtrl.cpp
@@ -302,7 +302,7 @@ CCarCtrl::GenerateOneRandomCar()
else {
int i;
carModel = -1;
for (i = 10; i > 0 && (carModel == -1 || CStreaming::HasModelLoaded(carModel)); i--) {
for (i = 10; i > 0 && (carModel == -1 || !CStreaming::HasModelLoaded(carModel)); i--) {
carModel = ChooseBoatModel(ChooseBoatRating(&zone));
}
if (i == 0)

0 comments on commit e30b538

Please sign in to comment.