We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 324a5bf commit 8fed549Copy full SHA for 8fed549
1 file changed
code/mission/missionparse.cpp
@@ -9499,8 +9499,8 @@ bool check_for_25_1_data()
9499
}
9500
9501
for (int team = 0; team < Num_teams; ++team) {
9502
- for (int weapon = 0; weapon < MAX_WEAPON_TYPES; ++weapon) {
9503
- if (The_mission.support_ships.rearm_weapon_pool[team][weapon] != -1) {
+ for (int pool_wep = 0; pool_wep < MAX_WEAPON_TYPES; ++pool_wep) {
+ if (The_mission.support_ships.rearm_weapon_pool[team][pool_wep] != -1) {
9504
return true;
9505
9506
0 commit comments