diff --git a/app/Ally/AllyControl.cs b/app/Ally/AllyControl.cs index de631f39..fe4e43f2 100644 --- a/app/Ally/AllyControl.cs +++ b/app/Ally/AllyControl.cs @@ -302,6 +302,14 @@ namespace GHelper.Ally Key1 = AppConfig.Get("bind_dpl"); Key2 = AppConfig.Get("bind_dpr"); break; + case BindingZone.StickClick: + Key1 = AppConfig.Get("bind_stl"); + Key2 = AppConfig.Get("bind_str"); + break; + case BindingZone.Bumper: + Key1 = AppConfig.Get("bind_bul"); + Key2 = AppConfig.Get("bind_bur"); + break; case BindingZone.AB: Key1 = AppConfig.Get("bind_a"); Key2 = AppConfig.Get("bind_b"); @@ -310,10 +318,18 @@ namespace GHelper.Ally Key1 = AppConfig.Get("bind_x"); Key2 = AppConfig.Get("bind_y"); break; - default: + case BindingZone.ViewMenu: + Key1 = AppConfig.Get("bind_menu"); + Key2 = AppConfig.Get("bind_select"); + break; + case BindingZone.M1M2: Key1 = AppConfig.Get("bind_m2"); Key2 = AppConfig.Get("bind_m1"); break; + default: + Key1 = AppConfig.Get("bind_trl"); + Key2 = AppConfig.Get("bind_trr"); + break; } if (Key1 == -1 && Key2 == -1) return;