Skip to content

Commit

Permalink
Merge pull request #343 from CBATeam/fix-preprocessor-paths
Browse files Browse the repository at this point in the history
Fix capitalization of paths referenced in preprocessing
  • Loading branch information
Killswitch00 committed May 31, 2016
2 parents 5d66287 + 486dfc6 commit 83a035b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions addons/jr/jr_classes.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,31 @@ class asdg_SlotInfo { // Base class
};

class asdg_OpticRail: asdg_SlotInfo { // Base optic rail class
linkProxy = "\A3\data_f\proxies\weapon_slots\TOP";
linkProxy = "\a3\data_f\proxies\weapon_slots\TOP";
displayName = "$STR_A3_CowsSlot0";
iconPicture = "\A3\Weapons_F\Data\UI\attachment_top";
iconPicture = "\a3\weapons_f\data\ui\attachment_top";
iconPinpoint = "Bottom";
};

class asdg_MuzzleSlot: asdg_SlotInfo { // Base muzzle slot
linkProxy = "\A3\data_f\proxies\weapon_slots\MUZZLE";
linkProxy = "\a3\data_f\proxies\weapon_slots\MUZZLE";
displayName = "$str_a3_cfgweapons_abr_base_f_weaponslotsinfo_muzzleslot0";
iconPicture = "\A3\Weapons_F\Data\UI\attachment_muzzle";
iconPicture = "\a3\weapons_f\data\ui\attachment_muzzle";
};

class asdg_FrontSideRail: asdg_SlotInfo { // Laser / flashlight rail
linkProxy = "\A3\data_f\proxies\weapon_slots\SIDE";
linkProxy = "\a3\data_f\proxies\weapon_slots\SIDE";
displayName = "$STR_A3_PointerSlot0";
iconPicture = "\A3\Weapons_F\Data\UI\attachment_side";
iconPicture = "\a3\weapons_f\data\ui\attachment_side";
class compatibleItems {
acc_flashlight = 1;
acc_pointer_IR = 1;
};
};

class asdg_UnderSlot: asdg_SlotInfo { // Base under barrel slot
linkProxy = "\A3\Data_F_Mark\Proxies\Weapon_Slots\UNDERBARREL";
iconPicture = "\A3\Weapons_F_Mark\Data\UI\attachment_under";
linkProxy = "\a3\data_f_mark\Proxies\Weapon_Slots\UNDERBARREL";
iconPicture = "\a3\weapons_f_mark\Data\UI\attachment_under";
iconPinpoint = "Bottom";
class compatibleItems {
bipod_01_F_snd = 1;
Expand Down
2 changes: 1 addition & 1 deletion addons/keybinding/gui/gui.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class RscListBoxKeys;
///////////////////////////////////////////////////////////////////////////////

class RscDisplayConfigure {
onLoad = "[""onLoad"",_this,""RscDisplayConfigure"",'GUI'] call compile preprocessfilelinenumbers ""A3\ui_f\scripts\initDisplay.sqf""; _this call compile preprocessfilelinenumbers ""\x\cba\addons\keybinding\gui\initDisplay.sqf""";
onLoad = "[""onLoad"",_this,""RscDisplayConfigure"",'GUI'] call compile preprocessfilelinenumbers ""a3\ui_f\scripts\initDisplay.sqf""; _this call compile preprocessfilelinenumbers ""\x\cba\addons\keybinding\gui\initDisplay.sqf""";

class controls {
class CA_ButtonCancel: RscButtonMenuCancel {
Expand Down

0 comments on commit 83a035b

Please sign in to comment.