mirror of https://github.com/PCSX2/pcsx2.git
GSdx:
- Fix a tiny GUI bug. Thanks for spotting it, KrossX ;) git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3436 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
04828db091
commit
1adf69bfb2
|
@ -116,7 +116,7 @@ void GSSettingsDlg::OnInit()
|
|||
if(i >= 3 && i <= 5)
|
||||
{
|
||||
if(!isdx11avail) continue;
|
||||
g_renderers[i].name = std::string("Direct3D") + (GSUtil::HasD3D11Features() ? "10" : "11");
|
||||
g_renderers[i].name = std::string("Direct3D") + (GSUtil::HasD3D11Features() ? "11" : "10");
|
||||
}
|
||||
|
||||
renderers.push_back(g_renderers[i]);
|
||||
|
|
Loading…
Reference in New Issue