CDROM: Implement asynchronous disc reading

This commit is contained in:
Connor McLaughlin
2020-02-22 00:19:10 +09:00
parent 7ece901d57
commit 959a555274
13 changed files with 362 additions and 87 deletions

View File

@ -971,6 +971,12 @@ void SDLHostInterface::DrawSettingsWindow()
settings_changed |= ImGui::Checkbox("Save State On Exit", &m_settings.save_state_on_exit);
}
ImGui::NewLine();
if (DrawSettingsSectionHeader("CDROM Emulation"))
{
settings_changed |= ImGui::Checkbox("Use Read Thread (Asynchronous)", &m_settings.cdrom_read_thread);
}
ImGui::NewLine();
if (DrawSettingsSectionHeader("Audio"))
{