mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-04-25 20:01:58 +00:00
Compile fix
This commit is contained in:
parent
d1e98f8091
commit
690b918be4
1 changed files with 1 additions and 1 deletions
|
|
@ -1050,7 +1050,7 @@ static void DrawConfigOption(int32_t rowIndex, float yOffset, ConfigDef<T>* conf
|
||||||
}
|
}
|
||||||
else if constexpr (std::is_same_v<T, float> || std::is_same_v<T, int32_t>)
|
else if constexpr (std::is_same_v<T, float> || std::is_same_v<T, int32_t>)
|
||||||
{
|
{
|
||||||
float deltaTime = std::fmin(ImGui::GetIO().DeltaTime, 1f/15f);
|
float deltaTime = std::fmin(ImGui::GetIO().DeltaTime, 1.0f/15.0f);
|
||||||
|
|
||||||
bool fastIncrement = isSlider && (leftIsHeld || rightIsHeld) && (time - g_lastTappedTime) > 0.5;
|
bool fastIncrement = isSlider && (leftIsHeld || rightIsHeld) && (time - g_lastTappedTime) > 0.5;
|
||||||
bool isPlayIncrementSound = true;
|
bool isPlayIncrementSound = true;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue