mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
Remove unused progressive scan option from iso properties, and disable audio settings while a game is running.
This commit is contained in:
parent
3da05af30a
commit
4f531fe122
3 changed files with 7 additions and 21 deletions
|
@ -618,6 +618,12 @@ void CConfigMain::CreateGUIControls()
|
|||
FrequencySelection->Append(wxString::Format(_("%d Hz"), 48000));
|
||||
FrequencySelection->Append(wxString::Format(_("%d Hz"), 32000));
|
||||
|
||||
if (Core::GetState() != Core::CORE_UNINITIALIZED)
|
||||
{
|
||||
FrequencySelection->Disable();
|
||||
BackendSelection->Disable();
|
||||
}
|
||||
|
||||
// Create sizer and add items to dialog
|
||||
wxStaticBoxSizer *sbAudioSettings = new wxStaticBoxSizer(wxVERTICAL, AudioPage, _("Sound Settings"));
|
||||
sbAudioSettings->Add(DSPEngine, 0, wxALL | wxEXPAND, 5);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue