From 0ed32df0bb572f8e2d94ac7a2d07b0a363bc968e Mon Sep 17 00:00:00 2001 From: Emmanuel AYME Date: Thu, 4 Sep 2025 11:34:36 +0200 Subject: [PATCH] Add 20 extra more degrees to FOV --- Cronos The New Dawn/dllmain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cronos The New Dawn/dllmain.cpp b/Cronos The New Dawn/dllmain.cpp index 1865074..eecaf02 100644 --- a/Cronos The New Dawn/dllmain.cpp +++ b/Cronos The New Dawn/dllmain.cpp @@ -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();