Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
TobyAdd committed Oct 8, 2024
1 parent c4fd8eb commit 7665abc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
4 changes: 3 additions & 1 deletion src/replayEngine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 7665abc

Please sign in to comment.