Add information. Version bump

This commit is contained in:
2025-12-17 19:19:11 +01:00
parent 94eeb9671f
commit 801555a96b

View File

@@ -48,7 +48,7 @@ static std::string log_content;
// Plugin settings
const std::string SETTINGS_FILE = "./pluginsettings.ini";
const char* FIX_VERSION = "0.9.0";
const char* FIX_VERSION = "0.9.2";
const char* FIX_INFORMATIONS = "This fix allows to:\n - Control FOV in game.\n - Control camera distance.\n - Control HUD scaling.\n - Disable chromatic aberrations.\n - Disable vignetting.\n - Disable fog.\n - Re enable dev console.";
const char* DONATION_URL = "https://buymeacoffee.com/k4sh44";
@@ -299,6 +299,7 @@ static void on_overlay_draw(reshade::api::effect_runtime* runtime)
ImGui::Text("Value is in cms.");
ImGui::EndTooltip();
}
ImGui::EndTable();
}
ImGui::PopStyleVar();
@@ -311,7 +312,7 @@ static void on_overlay_draw(reshade::api::effect_runtime* runtime)
GetGameInfos(&infos);
if (infos.consoleEnabled)
ImGui::Text("Console enabled and bound to key F2");
ImGui::TextColored(ImColor(48, 179, 25), "FOV In: %.2f, Out: %.2f", infos.FOVIn, infos.FOVOut);
ImGui::TextColored(ImColor(48, 179, 25), "FOV In: %.2f, Out: %.2f, Pawn camera offset: %.2f", infos.FOVIn, infos.FOVOut, infos.CompensatedFOV);
}
}
}