GSdx: Disable Alpha hack gui option on D3D9.

Hack is only used on D3D10/11.
This commit is contained in:
lightningterror 2018-05-31 21:22:12 +02:00
parent 61406a4349
commit ba463ed076
1 changed files with 2 additions and 1 deletions

View File

@ -657,6 +657,7 @@ void GSHacksDlg::OnInit()
// It can only be accessed with a HW renderer, so this is sufficient.
bool dx9 = renderer == GSRendererType::DX9_HW;
bool dx11 = renderer == GSRendererType::DX1011_HW;
bool ogl = renderer == GSRendererType::OGL_HW;
bool native = upscaling_multiplier == 1;
@ -723,7 +724,7 @@ void GSHacksDlg::OnInit()
// Direct3D-only hacks:
EnableWindow(GetDlgItem(m_hWnd, IDC_ALPHASTENCIL), !ogl);
EnableWindow(GetDlgItem(m_hWnd, IDC_ALPHAHACK), !ogl);
EnableWindow(GetDlgItem(m_hWnd, IDC_ALPHAHACK), dx11);
EnableWindow(GetDlgItem(m_hWnd, IDC_MSAACB), !ogl);
EnableWindow(GetDlgItem(m_hWnd, IDC_MSAA_TEXT), !ogl);