@@ -203,8 +203,6 @@ void InterfacePane::CreateInGame()
203203 m_checkbox_confirm_on_stop = new ConfigBool (tr (" Confirm on Stop" ), Config::MAIN_CONFIRM_ON_STOP);
204204 m_checkbox_use_panic_handlers =
205205 new ConfigBool (tr (" Use Panic Handlers" ), Config::MAIN_USE_PANIC_HANDLERS);
206- m_checkbox_adapter_warning =
207- new ConfigBool (tr (" Show Adapter Poll Rate Warning" ), Config::MAIN_SHOW_ADAPTER_WARNING); // move after merge to OSD settings
208206 m_checkbox_show_active_title =
209207 new ConfigBool (tr (" Show Active Title in Window Title" ), Config::MAIN_SHOW_ACTIVE_TITLE);
210208 m_checkbox_pause_on_focus_lost =
@@ -234,7 +232,6 @@ void InterfacePane::CreateInGame()
234232 groupbox_layout->addWidget (m_checkbox_top_window);
235233 groupbox_layout->addWidget (m_checkbox_confirm_on_stop);
236234 groupbox_layout->addWidget (m_checkbox_use_panic_handlers);
237- groupbox_layout->addWidget (m_checkbox_adapter_warning); // move after merge to OSD settings
238235 groupbox_layout->addWidget (m_checkbox_show_active_title);
239236 groupbox_layout->addWidget (m_checkbox_pause_on_focus_lost);
240237 groupbox_layout->addWidget (mouse_groupbox);
@@ -375,11 +372,6 @@ void InterfacePane::AddDescriptions()
375372 " present choices on how to proceed. With this option disabled, Dolphin will "
376373 " \" ignore\" all errors. Emulation will not be halted and you will not be notified."
377374 " <br><br><dolphin_emphasis>If unsure, leave this checked.</dolphin_emphasis>" );
378- static constexpr char TR_ADAPTER_WARNING_DESCRIPTION[] =
379- QT_TR_NOOP (" This setting makes Dolphin warn and show a message when inputs are being read at a reduced rate when an adapter problem is detected."
380- " This should only occur when your adapter returns something other than LIBUSB_SUCCESS."
381- " Before turning this off, try reinstalling drivers and switching USB ports."
382- " <br><br><dolphin_emphasis>If unsure, leave this checked.</dolphin_emphasis>" ); // move to OSD settings after merge
383375 static constexpr char TR_SHOW_ACTIVE_TITLE_DESCRIPTION[] =
384376 QT_TR_NOOP (" Shows the active game title in the render window's title bar."
385377 " <br><br><dolphin_emphasis>If unsure, leave this checked.</dolphin_emphasis>" );
@@ -426,8 +418,6 @@ void InterfacePane::AddDescriptions()
426418 m_checkbox_confirm_on_stop->SetDescription (tr (TR_CONFIRM_ON_STOP_DESCRIPTION));
427419
428420 m_checkbox_use_panic_handlers->SetDescription (tr (TR_USE_PANIC_HANDLERS_DESCRIPTION));
429-
430- m_checkbox_adapter_warning->SetDescription (tr (TR_ADAPTER_WARNING_DESCRIPTION)); // move to OSD settings after merge
431421
432422 m_checkbox_show_active_title->SetDescription (tr (TR_SHOW_ACTIVE_TITLE_DESCRIPTION));
433423
0 commit comments