Skip to content

Commit f84a697

Browse files
committed
fix variable name
1 parent 1aed5a0 commit f84a697

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
@@ -9519,8 +9519,8 @@ bool check_for_25_1_data()
95199519
}
95209520

95219521
for (int team = 0; team < Num_teams; ++team) {
9522-
for (int weapon = 0; weapon < MAX_WEAPON_TYPES; ++weapon) {
9523-
if (The_mission.support_ships.rearm_weapon_pool[team][weapon] != -1) {
9522+
for (int pool_wep = 0; pool_wep < MAX_WEAPON_TYPES; ++pool_wep) {
9523+
if (The_mission.support_ships.rearm_weapon_pool[team][pool_wep] != -1) {
95249524
return true;
95259525
}
95269526
}

0 commit comments

Comments
 (0)