Fix openpopup issue, make JIT selectable

This commit is contained in:
irisz64
2025-07-03 10:42:48 +02:00
parent 075fadde87
commit 5195d65373
6 changed files with 40 additions and 35 deletions

View File

@@ -17,8 +17,6 @@ bool AudioSettings::render() {
modified = true;
}
ImGui::SameLine();
if(ImGui::SliderFloat("Volume L", &volumeL, 0.f, 100.f, "%.2f")) {
Options::GetInstance().SetValue("audio", "volumeL", volumeL / 100.f);
@@ -30,8 +28,6 @@ bool AudioSettings::render() {
modified = true;
}
ImGui::SameLine();
ImGui::BeginDisabled(lockChannels);
if(ImGui::SliderFloat("Volume R", &volumeR, 0.f, 100.f, "%.2f")) {
Options::GetInstance().SetValue("audio", "volumeR", volumeR / 100.f);