Skip to content

Commit 48de347

Browse files
committed
fix variable name
1 parent 0ef611c commit 48de347

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
@@ -9531,8 +9531,8 @@ bool check_for_25_1_data()
95319531
}
95329532

95339533
for (int team = 0; team < Num_teams; ++team) {
9534-
for (int weapon = 0; weapon < MAX_WEAPON_TYPES; ++weapon) {
9535-
if (The_mission.support_ships.rearm_weapon_pool[team][weapon] != -1) {
9534+
for (int pool_wep = 0; pool_wep < MAX_WEAPON_TYPES; ++pool_wep) {
9535+
if (The_mission.support_ships.rearm_weapon_pool[team][pool_wep] != -1) {
95369536
return true;
95379537
}
95389538
}

0 commit comments

Comments
 (0)