Skip to content

Commit

Permalink
change filename for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCandianVendingMachine committed Sep 10, 2024
1 parent da47c23 commit 972d93e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion addons/missileguidance/XEH_PREP.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ PREP(handleHandoff);

//re-enable after feature merge - PREP(shouldFilterRadarHit);

PREP(mclosButtonPressed);
PREP(MCLOS_buttonPressed);

// Attack Profiles
PREP(attackProfile_AIR);
Expand Down
16 changes: 8 additions & 8 deletions addons/missileguidance/XEH_postInit.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -12,29 +12,29 @@

// Each MCLOS argument is the vector which acceleration will be applied
["ACE3 Weapons", QGVAR(mclosUp), LLSTRING(mclosUp), {
[[0, 0, 1], ACE_player] call FUNC(mclosButtonPressed)
[[0, 0, 1], ACE_player] call FUNC(MCLOS_buttonPressed)
}, {
[[0, 0, -1], ACE_player] call FUNC(mclosButtonPressed)
[[0, 0, -1], ACE_player] call FUNC(MCLOS_buttonPressed)
},
[DIK_NUMPAD8, [false, false, false]], false, 0] call CBA_fnc_addKeybind; // Numpad 8

["ACE3 Weapons", QGVAR(mclosDown), LLSTRING(mclosDown), {
[[0, 0, -1], ACE_player] call FUNC(mclosButtonPressed)
[[0, 0, -1], ACE_player] call FUNC(MCLOS_buttonPressed)
}, {
[[0, 0, 1], ACE_player] call FUNC(mclosButtonPressed)
[[0, 0, 1], ACE_player] call FUNC(MCLOS_buttonPressed)
},
[DIK_NUMPAD2, [false, false, false]], false, 0] call CBA_fnc_addKeybind; // Numpad 2

["ACE3 Weapons", QGVAR(mclosLeft), LLSTRING(mclosLeft), {
[[1, 0, 0], ACE_player] call FUNC(mclosButtonPressed)
[[1, 0, 0], ACE_player] call FUNC(MCLOS_buttonPressed)
}, {
[[-1, 0, 0], ACE_player] call FUNC(mclosButtonPressed)
[[-1, 0, 0], ACE_player] call FUNC(MCLOS_buttonPressed)
},
[DIK_NUMPAD6, [false, false, false]], false, 0] call CBA_fnc_addKeybind; // Numpad 6

["ACE3 Weapons", QGVAR(mclosRight), LLSTRING(mclosRight), {
[[-1, 0, 0], ACE_player] call FUNC(mclosButtonPressed)
[[-1, 0, 0], ACE_player] call FUNC(MCLOS_buttonPressed)
}, {
[[1, 0, 0], ACE_player] call FUNC(mclosButtonPressed)
[[1, 0, 0], ACE_player] call FUNC(MCLOS_buttonPressed)
},
[DIK_NUMPAD4, [false, false, false]], false, 0] call CBA_fnc_addKeybind; // Numpad 4
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* If the button is pressed with an MCLOS context
*
* Example:
* [[0, 0, 1], player] call ace_missileguidance_fnc_mclosButtonPressed
* [[0, 0, 1], player] call ace_missileguidance_fnc_MCLOS_buttonPressed
*
* Public: No
*/
Expand Down

0 comments on commit 972d93e

Please sign in to comment.