Fixed game-specific Wii/Widescreen and RE0 Hack checkboxes.

Disabled game-specific Wii/Progressive Scan checkbox, since its never used by Dolphin; it would cause side-effects to global configuration if we did write to SysConf in that place.
Fixes Issue 2518

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5283 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
j4ck.fr0st 2010-04-05 13:05:47 +00:00
parent 3a4b13e71f
commit ff9b185a7f
6 changed files with 32 additions and 4 deletions

View file

@ -299,6 +299,13 @@ void CISOProperties::CreateGUIControls(bool IsWad)
EnableProgressiveScan->Hide();
EnableWideScreen->Hide();
}
else
{
//Progressive Scan is not used by Dolphin itself,
//and changing it on a per-game basis would have the side-effect of changing the SysConf,
//making this setting rather useless.
EnableProgressiveScan->Disable();
}
// Video
sbVideoOverrides = new wxStaticBoxSizer(wxVERTICAL, m_GameConfig, _("Video"));
ForceFiltering = new wxCheckBox(m_GameConfig, ID_FORCEFILTERING, _("Force Filtering"), wxDefaultPosition, wxDefaultSize, wxCHK_3STATE|wxCHK_ALLOW_3RD_STATE_FOR_USER, wxDefaultValidator);