Implement RSP MEM mirroring

This commit is contained in:
CocoSimone
2022-09-19 20:07:28 +02:00
parent 708dde5b6c
commit f88fcf657e
3 changed files with 100 additions and 43 deletions

View File

@@ -223,11 +223,9 @@ void Window::Render(n64::Core& core) {
if (!lockVolume) {
ImGui::SliderFloat("Volume R", &volumeR, 0, 1, "%.2f", ImGuiSliderFlags_NoInput);
} else {
ImGui::PushStyleColor(ImGuiCol_SliderGrabActive, 0x11111111);
ImGui::BeginDisabled();
ImGui::SliderFloat("Volume R", &volumeR, 0, 1, "%.2f", ImGuiSliderFlags_NoInput);
ImGui::EndDisabled();
ImGui::PopStyleColor();
volumeR = volumeL;
}
ImGui::EndPopup();