diff --git a/src/combat.h b/src/combat.h index 8b4096c..7935844 100644 --- a/src/combat.h +++ b/src/combat.h @@ -33,7 +33,7 @@ void _combat_update_critter_outline_for_los(Object* critter, bool a2); void _combat_over_from_load(); void _combat_give_exps(int exp_points); void _combat_turn_run(); -void _combat(CombatStartData* attack); +void _combat(CombatStartData* csd); void attackInit(Attack* attack, Object* attacker, Object* defender, int hitMode, int hitLocation); int _combat_attack(Object* attacker, Object* defender, int hitMode, int hitLocation); int _combat_bullet_start(const Object* attacker, const Object* target); diff --git a/src/interpreter_extra.cc b/src/interpreter_extra.cc index 0406ff3..4e09afa 100644 --- a/src/interpreter_extra.cc +++ b/src/interpreter_extra.cc @@ -1868,27 +1868,27 @@ static void opAttackComplex(Program* program) combatData->whoHitMe = target; } } else { - CombatStartData attack; - attack.attacker = self; - attack.defender = target; - attack.actionPointsBonus = 0; - attack.accuracyBonus = data[4]; - attack.damageBonus = 0; - attack.minDamage = data[3]; - attack.maxDamage = data[2]; + CombatStartData combat; + combat.attacker = self; + combat.defender = target; + combat.actionPointsBonus = 0; + combat.accuracyBonus = data[4]; + combat.damageBonus = 0; + combat.minDamage = data[3]; + combat.maxDamage = data[2]; // TODO: Something is probably broken here, why it wants // flags to be the same? Maybe because both of them // are applied to defender because of the bug in 0x422F3C? if (data[1] == data[0]) { - attack.overrideAttackResults = 1; - attack.targetResults = data[0]; - attack.attackerResults = data[1]; + combat.overrideAttackResults = 1; + combat.targetResults = data[0]; + combat.attackerResults = data[1]; } else { - attack.overrideAttackResults = 0; + combat.overrideAttackResults = 0; } - scriptsRequestCombat(&attack); + scriptsRequestCombat(&combat); } program->flags &= ~PROGRAM_FLAG_0x20; @@ -4455,17 +4455,17 @@ static void opAttackSetup(Program* program) attacker->data.critter.combat.whoHitMe = defender; } } else { - CombatStartData attack; - attack.attacker = attacker; - attack.defender = defender; - attack.actionPointsBonus = 0; - attack.accuracyBonus = 0; - attack.damageBonus = 0; - attack.minDamage = 0; - attack.maxDamage = INT_MAX; - attack.overrideAttackResults = 0; + CombatStartData combat; + combat.attacker = attacker; + combat.defender = defender; + combat.actionPointsBonus = 0; + combat.accuracyBonus = 0; + combat.damageBonus = 0; + combat.minDamage = 0; + combat.maxDamage = INT_MAX; + combat.overrideAttackResults = 0; - scriptsRequestCombat(&attack); + scriptsRequestCombat(&combat); } } diff --git a/src/scripts.cc b/src/scripts.cc index c566451..5d068c5 100644 --- a/src/scripts.cc +++ b/src/scripts.cc @@ -1117,10 +1117,10 @@ int scriptsRequestCombat(CombatStartData* combat) // Likely related to random encounter, ala scriptsRequestRandomEncounter RELEASE // // 0x4A45D4 -void _scripts_request_combat_locked(CombatStartData* a1) +void _scripts_request_combat_locked(CombatStartData* combat) { - if (a1 != NULL) { - memcpy(&gScriptsRequestedCSD, a1, sizeof(gScriptsRequestedCSD)); + if (combat != NULL) { + memcpy(&gScriptsRequestedCSD, combat, sizeof(gScriptsRequestedCSD)); } else { gScriptsRequests |= SCRIPT_REQUEST_0x40; }