summaryrefslogtreecommitdiff
path: root/cheat/internal_rewrite/ui.h
diff options
context:
space:
mode:
authornavewindre <boneyaard@gmail.com>2018-11-28 17:06:47 +0100
committernavewindre <boneyaard@gmail.com>2018-11-28 17:06:47 +0100
commitc163c5575af4d1e7755510b03a7cd7809869eeef (patch)
treedf472b7f2a26ffa076fdf27aa19e221008522b07 /cheat/internal_rewrite/ui.h
parent96de4961c447d7009ba52b6bf04d4b7bfe487ab1 (diff)
i hate myself
Diffstat (limited to 'cheat/internal_rewrite/ui.h')
-rw-r--r--cheat/internal_rewrite/ui.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/cheat/internal_rewrite/ui.h b/cheat/internal_rewrite/ui.h
index 7dc88a3..1dd6481 100644
--- a/cheat/internal_rewrite/ui.h
+++ b/cheat/internal_rewrite/ui.h
@@ -419,8 +419,11 @@ namespace ui
edge_form->add_item( std::make_shared< ui::c_slider< int > >( 0, 0, 140, 70, 300, &g_settings.rage.edge_dtc_moving ) )->set_cond(
[ ]( ) { return !!g_settings.rage.edge_dtc_normal( ); } );
- edge_form->add_item( std::make_shared< ui::c_checkbox >( 0, 0, xors( "freestanding" ),
- &g_settings.rage.edge_detection ) );
+ edge_form->add_item( std::make_shared< ui::c_dropdown< int > >( 0, 0, 140, xors( "freestanding" ),
+ &g_settings.rage.edge_detection, &dropdowns::antiaim_freestanding ) );
+
+ edge_form->add_item( std::make_shared< ui::c_slider< int > >( 0, 0, 140, 0, 90, xors( "modifier" ),
+ &g_settings.rage.edge_dtc_real_jitter ) );
edge_form->add_item( std::make_shared< ui::c_dropdown< > >( 0, 0, 140, xors( "priority" ),
&g_settings.rage.edge_dtc_priority, &dropdowns::edge_priority )
@@ -430,7 +433,6 @@ namespace ui
)->set_cond( [ ]( ) { return g_settings.rage.break_lby; } );
edge_form->add_item( std::make_shared< ui::c_slider< int > >( 0, 0, 140, 0, 90, xors( "fake jitter" ), &g_settings.rage.edge_dtc_jitter ) );
- edge_form->add_item(std::make_shared< ui::c_slider< int > >(0, 0, 140, 0, 90, xors("real jitter"), &g_settings.rage.edge_dtc_real_jitter));
}
auto lby_form = std::make_shared< ui::c_form >( 0, 0, 215, 106, xors( "lby breaker" ), 106 ); {