@@ -32,7 +32,7 @@ class ImGuiCommon
32
32
inline static uint32_t _renderWidth = 0 ;
33
33
34
34
// dlss enabler
35
- inline static int _deLimitFps = 0 ;
35
+ inline static int _deLimitFps = 500 ;
36
36
37
37
// output scaling
38
38
inline static float _ssRatio = 0 .0f ;
@@ -42,6 +42,7 @@ class ImGuiCommon
42
42
inline static int _selectedScale = 0 ;
43
43
inline static bool _imguiSizeUpdate = true ;
44
44
45
+ // ovarlay states
45
46
inline static bool _dx11Ready = false ;
46
47
inline static bool _dx12Ready = false ;
47
48
inline static bool _vulkanReady = false ;
@@ -1094,7 +1095,8 @@ class ImGuiCommon
1094
1095
1095
1096
ImGui::BeginDisabled (Config::Instance ()->DE_FramerateLimitVsync .value_or (false ));
1096
1097
1097
- if (Config::Instance ()->DE_FramerateLimit .has_value () && _deLimitFps == 0 )
1098
+ // set inital value
1099
+ if (Config::Instance ()->DE_FramerateLimit .has_value () && _deLimitFps > 200 )
1098
1100
_deLimitFps = Config::Instance ()->DE_FramerateLimit .value ();
1099
1101
1100
1102
ImGui::SliderInt (" FPS Limit" , &_deLimitFps, 0 , 200 );
@@ -1142,8 +1144,8 @@ class ImGuiCommon
1142
1144
if (ImGui::Selectable (" FSR3" , Config::Instance ()->DE_Generator .value_or (" auto" ) == " fsr3" ))
1143
1145
Config::Instance ()->DE_Generator = " fsr3" ;
1144
1146
1145
- if (ImGui::Selectable (" DLSS-G" , Config::Instance ()->DE_Generator .value_or (" auto" ) == " dlggs " ))
1146
- Config::Instance ()->DE_Generator = " dlggs " ;
1147
+ if (ImGui::Selectable (" DLSS-G" , Config::Instance ()->DE_Generator .value_or (" auto" ) == " dlssg " ))
1148
+ Config::Instance ()->DE_Generator = " dlssg " ;
1147
1149
1148
1150
ImGui::EndCombo ();
1149
1151
}
0 commit comments