Skip to content

Commit 8fed549

Browse files
committed
fix variable name
1 parent 324a5bf commit 8fed549

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

code/mission/missionparse.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9499,8 +9499,8 @@ bool check_for_25_1_data()
94999499
}
95009500

95019501
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) {
9502+
for (int pool_wep = 0; pool_wep < MAX_WEAPON_TYPES; ++pool_wep) {
9503+
if (The_mission.support_ships.rearm_weapon_pool[team][pool_wep] != -1) {
95049504
return true;
95059505
}
95069506
}

0 commit comments

Comments
 (0)