Skip to content

Commit

Permalink
Add setting checkbox for tc_old_mouse_zoom
Browse files Browse the repository at this point in the history
  • Loading branch information
sjrc6 committed Oct 3, 2024
1 parent d758084 commit 9662319
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/game/client/components/menus_settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3329,8 +3329,12 @@ void CMenus::RenderSettingsTClient(CUIRect MainView)
if(g_Config.m_ClFastInput)
{
MainView.HSplitTop(10.0f, 0x0, &MainView);
DoButton_CheckBoxAutoVMarginAndSet(&g_Config.m_ClFastInputOthers, ("Extra tick other tees (increases other tees visual latency, \n makes dragging slightly easier when using fast input)"), &g_Config.m_ClFastInputOthers, &MainView, LineMargin);
DoButton_CheckBoxAutoVMarginAndSet(&g_Config.m_ClFastInputOthers, ("Extra tick other tees (increases other tees visual latency, \nmakes dragging slightly easier when using fast input)"), &g_Config.m_ClFastInputOthers, &MainView, LineMargin);
}
MainView.HSplitTop(15.0f, 0x0, &MainView);
MainView.HSplitTop(10.0f, 0x0, &MainView);
DoButton_CheckBoxAutoVMarginAndSet(&g_Config.m_ClOldMouseZoom, ("Old Mouse Precision (fixes precision at low zoom levels, \nbreaks /tc, /telecursor while zoomed)"), &g_Config.m_ClOldMouseZoom, &MainView, LineMargin);

{
CUIRect Button;
CUIRect ExtMenu;
Expand Down

0 comments on commit 9662319

Please sign in to comment.