SDL: Add CDROM Enable Region Check option

This commit is contained in:
Connor McLaughlin 2020-04-01 14:50:21 +10:00
parent 15c33ebedb
commit 9933910312

View file

@ -1105,7 +1105,8 @@ void SDLHostInterface::DrawSettingsWindow()
ImGui::NewLine();
if (DrawSettingsSectionHeader("CDROM Emulation"))
{
settings_changed |= ImGui::Checkbox("Use Read Thread (Asynchronous)", &m_settings.cdrom_read_thread);
settings_changed |= ImGui::Checkbox("Use Read Thread (Asynchronous)", &m_settings_copy.cdrom_read_thread);
settings_changed |= ImGui::Checkbox("Enable Region Check", &m_settings_copy.cdrom_region_check);
}
ImGui::NewLine();