Add 20 extra more degrees to FOV

This commit is contained in:
2025-09-04 11:34:36 +02:00
parent 7625accaf7
commit 0ed32df0bb

View File

@@ -225,7 +225,7 @@ static void on_overlay_draw(reshade::api::effect_runtime* runtime)
if (ImGui::CollapsingHeader("In game additional FOV", ImGuiTreeNodeFlags_DefaultOpen)) {
ImGui::SetCursorPos(ImVec2(5, 30));
ImGui::SetNextItemWidth(150.0f);
if (ImGui::SliderInt("", &worldFOVvalue, -20, 50)) {}
if (ImGui::SliderInt("", &worldFOVvalue, -20, 70)) {}
if (ImGui::IsItemDeactivatedAfterEdit()) {
if (SetFOV) SetFOV(worldFOVvalue);
SaveSettings();