Merge pull request #1015 from ggrtk/sdl-mute-cd-audio

SDL: Add Mute CD Audio option to settings menu
This commit is contained in:
Connor McLaughlin 2020-10-30 00:44:03 +10:00 committed by GitHub
commit 3394575dca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -1285,6 +1285,7 @@ void SDLHostInterface::DrawSettingsWindow()
settings_changed |= ImGui::Checkbox("Output Sync", &m_settings_copy.audio_sync_enabled); settings_changed |= ImGui::Checkbox("Output Sync", &m_settings_copy.audio_sync_enabled);
settings_changed |= ImGui::Checkbox("Start Dumping On Boot", &m_settings_copy.audio_dump_on_boot); settings_changed |= ImGui::Checkbox("Start Dumping On Boot", &m_settings_copy.audio_dump_on_boot);
settings_changed |= ImGui::Checkbox("Mute CD Audio", &m_settings_copy.cdrom_mute_cd_audio);
} }
ImGui::EndTabItem(); ImGui::EndTabItem();