From 9a51d381c99e11fab50a383dcee8a3d73b75d49b Mon Sep 17 00:00:00 2001 From: GTMoraes <107651397+GTMoraes@users.noreply.github.com> Date: Fri, 18 Aug 2023 11:03:10 -0300 Subject: [PATCH] feat(Handling): Allow a broader range on the sliders (#1986) --- src/gui/handling/current_profile/current_profile_other.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gui/handling/current_profile/current_profile_other.cpp b/src/gui/handling/current_profile/current_profile_other.cpp index ccead71a..1e7556a3 100644 --- a/src/gui/handling/current_profile/current_profile_other.cpp +++ b/src/gui/handling/current_profile/current_profile_other.cpp @@ -7,10 +7,10 @@ namespace big if (ImGui::BeginTabItem("HANDLING_TAB_OTHER"_T.data())) { ImGui::Text("HANDLING_ACCELERATION_MULTIPLIER"_T.data()); - ImGui::DragFloat("###handling_acceleration", &g_local_player->m_vehicle->m_handling_data->m_acceleration, .01f, 1.f, 10.f); + ImGui::DragFloat("###handling_acceleration", &g_local_player->m_vehicle->m_handling_data->m_acceleration, .01f, .01f, 10.f); ImGui::Text("HANDLING_DOWNFORCE_MULTIPLIER"_T.data()); - ImGui::DragFloat("###handling_downforce", &g_local_player->m_vehicle->m_handling_data->m_downforce_multiplier, .01f, 0.f, 10.f); + ImGui::DragFloat("###handling_downforce", &g_local_player->m_vehicle->m_handling_data->m_downforce_multiplier, .01f, .01f, 10.f); ImGui::Text("HANDLING_INERTIA_MULTIPLIER"_T.data()); float fInertiaMult[3]; @@ -27,4 +27,4 @@ namespace big ImGui::EndTabItem(); } } -}; \ No newline at end of file +};