From 9933910312f8334ebdd45107004f3b016121918c Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Wed, 1 Apr 2020 14:50:21 +1000 Subject: [PATCH] SDL: Add CDROM Enable Region Check option --- src/duckstation-sdl/sdl_host_interface.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/duckstation-sdl/sdl_host_interface.cpp b/src/duckstation-sdl/sdl_host_interface.cpp index 03a56359c..a97e24c98 100644 --- a/src/duckstation-sdl/sdl_host_interface.cpp +++ b/src/duckstation-sdl/sdl_host_interface.cpp @@ -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();