Skip to content

Commit 3187de2

Browse files
committed
fix variable name
1 parent 3830729 commit 3187de2

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
@@ -9515,8 +9515,8 @@ bool check_for_25_1_data()
95159515
}
95169516

95179517
for (int team = 0; team < Num_teams; ++team) {
9518-
for (int weapon = 0; weapon < MAX_WEAPON_TYPES; ++weapon) {
9519-
if (The_mission.support_ships.rearm_weapon_pool[team][weapon] != -1) {
9518+
for (int pool_wep = 0; pool_wep < MAX_WEAPON_TYPES; ++pool_wep) {
9519+
if (The_mission.support_ships.rearm_weapon_pool[team][pool_wep] != -1) {
95209520
return true;
95219521
}
95229522
}

0 commit comments

Comments
 (0)