From 7665abc704747f3fc4c167bb49cba2ff3cec0f8a Mon Sep 17 00:00:00 2001 From: TobyAdd <66429886+TobyAdd@users.noreply.github.com> Date: Tue, 8 Oct 2024 19:45:46 +0300 Subject: [PATCH] changelog --- changelog.md | 7 +++++++ src/gui.cpp | 2 +- src/replayEngine.cpp | 4 +++- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 327b875..176f7b6 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,10 @@ +# 4.7.5 +- Fixed input frame conflict that could have broken the macro +- Unlocked showcase video recording from 60 to 240 fps (Engine v2) +- Synchronize Audio on Video Recording (Experimental feature, currently breaking on song triggers) +- Improved Practice Fix +- Fixed recorder presets + # 4.7.4 - New Replay System (Engine v2) - Improved the accuracy of both engines diff --git a/src/gui.cpp b/src/gui.cpp index ab9e0e3..448ffab 100644 --- a/src/gui.cpp +++ b/src/gui.cpp @@ -128,7 +128,7 @@ void gui::RenderMain() { ImGui::PushStyleVar(ImGuiStyleVar_Alpha, 1); imgui_popup::render(); - ImGui::SetNextWindowPos({0, 0}); + // ImGui::SetNextWindowPos({0, 0}); // ImGui::Begin("Replay", 0, ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoDecoration | ImGuiWindowFlags_NoBackground | ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoInputs); // for (auto i : engine.replay2) { // ImGui::Text("%i %i %i %i", i.frame, i.hold, i.button, i.player); diff --git a/src/replayEngine.cpp b/src/replayEngine.cpp index 3eb62d8..89bfca0 100644 --- a/src/replayEngine.cpp +++ b/src/replayEngine.cpp @@ -378,7 +378,9 @@ void ReplayEngine::render() { ImGui::SameLine(); } - ImGui::Checkbox("Practice Fix", &practice_fix); + if (ImGui::Checkbox("Practice Fix", &practice_fix)) { + if (!practice_fix) input_buffer = false; + } if (practice_fix) { ImGui::SameLine();