diff options
Diffstat (limited to 'csgo-loader/csgo-client/UserExperience/MoneybotShared/ui.h')
| -rw-r--r-- | csgo-loader/csgo-client/UserExperience/MoneybotShared/ui.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/csgo-loader/csgo-client/UserExperience/MoneybotShared/ui.h b/csgo-loader/csgo-client/UserExperience/MoneybotShared/ui.h index 661ef1f..b061cd5 100644 --- a/csgo-loader/csgo-client/UserExperience/MoneybotShared/ui.h +++ b/csgo-loader/csgo-client/UserExperience/MoneybotShared/ui.h @@ -84,20 +84,20 @@ namespace ui { auto choose_form = menu->add_item(std::make_shared<ui::c_form>(120, 20, 190, 115, "select a cheat"));
{
// Change these if you want to.
- static std::vector<dropdowns::dropdown_item_t<int>> m_beta_items{
+ static std::vector<dropdowns::dropdown_item_t<uint16_t>> m_beta_items{
{ "cs:go (release)", 0 },
{ "cs:go (beta)", 1 },
{ "cs:go (debug)", 2 },
};
- static std::vector<dropdowns::dropdown_item_t<int>> m_normal_items{
+ static std::vector<dropdowns::dropdown_item_t<uint16_t>> m_normal_items{
{ "cs:go", 0 },
};
- choose_form->add_item(std::make_shared<ui::c_dropdown<int>>(15, 0, 140, "cheat selection:", &UserInterface->m_Data.m_SelectedGame, &m_beta_items))->set_cond([] {
+ choose_form->add_item(std::make_shared<ui::c_dropdown<uint16_t>>(15, 0, 140, "cheat selection:", &UserInterface->m_Data.m_SelectedGame, &m_beta_items))->set_cond([] {
return UserInterface->m_Data.m_SpecialAccess;
});
- choose_form->add_item(std::make_shared<ui::c_dropdown<int>>(15, 0, 140, "cheat selection:", &UserInterface->m_Data.m_SelectedGame, &m_normal_items))->set_cond([] {
+ choose_form->add_item(std::make_shared<ui::c_dropdown<uint16_t>>(15, 0, 140, "cheat selection:", &UserInterface->m_Data.m_SelectedGame, &m_normal_items))->set_cond([] {
return !UserInterface->m_Data.m_SpecialAccess;
});
|
