diff --git a/The Callisto Protocol/dllmain.cpp b/The Callisto Protocol/dllmain.cpp index 2e9bdb7..301f194 100644 --- a/The Callisto Protocol/dllmain.cpp +++ b/The Callisto Protocol/dllmain.cpp @@ -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); } } }