diff --git a/src/xenia/gpu/xe-gpu-trace-viewer.cc b/src/xenia/gpu/xe-gpu-trace-viewer.cc index 8e4b5704f..fd74eff22 100644 --- a/src/xenia/gpu/xe-gpu-trace-viewer.cc +++ b/src/xenia/gpu/xe-gpu-trace-viewer.cc @@ -859,7 +859,7 @@ void DrawControllerUI(xe::ui::MainWindow* window, TracePlayer& player, ImGui::SetTooltip("Reset to first frame"); } ImGui::SameLine(); - if (ImGui::Button(">>", ImVec2(0, 0), true)) { + if (ImGui::Button(">>", ImVec2(0, 0))) { if (target_frame + 1 < player.frame_count()) { ++target_frame; } @@ -913,7 +913,7 @@ void DrawCommandListUI(xe::ui::MainWindow* window, TracePlayer& player, ImGui::SetTooltip("Reset to before any frame commands"); } ImGui::SameLine(); - if (ImGui::Button("prev", ImVec2(0, 0), true)) { + if (ImGui::Button("prev", ImVec2(0, 0))) { if (target_command >= 0) { --target_command; } @@ -922,7 +922,7 @@ void DrawCommandListUI(xe::ui::MainWindow* window, TracePlayer& player, ImGui::SetTooltip("Move to the previous command (hold)"); } ImGui::SameLine(); - if (ImGui::Button("next", ImVec2(0, 0), true)) { + if (ImGui::Button("next", ImVec2(0, 0))) { if (target_command < command_count - 1) { ++target_command; } @@ -2173,7 +2173,7 @@ void DrawPacketDisassemblerUI(xe::ui::MainWindow* window, TracePlayer& player, } void DrawUI(xe::ui::MainWindow* window, TracePlayer& player, Memory* memory) { - ImGui::ShowTestWindow(); + // ImGui::ShowTestWindow(); DrawControllerUI(window, player, memory); DrawCommandListUI(window, player, memory); diff --git a/third_party/imgui b/third_party/imgui index 19f7bf90f..14f189b2f 160000 --- a/third_party/imgui +++ b/third_party/imgui @@ -1 +1 @@ -Subproject commit 19f7bf90f86063dbbc59e93c3f5a973e75ec696b +Subproject commit 14f189b2f62ec2f79875e7c897a42415fe96fde6