Skip to content

Commit 40031b3

Browse files
committed
fix velocity factor for menu
1 parent 046f643 commit 40031b3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

OptiScaler/imgui/imgui_common.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1014,7 +1014,7 @@ void ImGuiCommon::RenderMenu()
10141014

10151015
if (cf->Version().patch > 0)
10161016
{
1017-
float velocity = Config::Instance()->FsrVelocity.value_or(0.3);
1017+
float velocity = Config::Instance()->FsrVelocity.value_or(1.0);
10181018
if (ImGui::SliderFloat("Velocity Factor", &velocity, 0.00f, 1.0f, "%.2f", ImGuiSliderFlags_NoRoundToFormat))
10191019
Config::Instance()->FsrVelocity = velocity;
10201020

OptiScaler/resource.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
#define VER_MAJOR_VERSION 0
2222
#define VER_MINOR_VERSION 6
2323
#define VER_HOTFIX_VERSION 7
24-
#define VER_BUILD_NUMBER 14
24+
#define VER_BUILD_NUMBER 15
2525

26-
#define VER_PRE_RELEASE
26+
//#define VER_PRE_RELEASE
2727

2828
#define VER_FILE_VERSION VER_MAJOR_VERSION, VER_MINOR_VERSION, VER_HOTFIX_VERSION, VER_BUILD_NUMBER
2929
#define VER_FILE_VERSION_STR STRINGIZE(VER_MAJOR_VERSION) "." STRINGIZE(VER_MINOR_VERSION) "." STRINGIZE(VER_HOTFIX_VERSION) "." STRINGIZE(VER_BUILD_NUMBER)

0 commit comments

Comments
 (0)