GSDX: Remove redundant parenthesis from combobox text

The third parameter of the GSSetting constructor already encloses the
text in parenthesis, so the right bracket here just messed up things.
This commit is contained in:
Akash 2017-05-06 22:14:13 +05:30 committed by Jonathan Li
parent 5f449151a1
commit 7a3239cba0
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ void GSdxApp::Init()
m_gs_hw_mipmapping.push_back(GSSetting(0, "Off", ""));
m_gs_hw_mipmapping.push_back(GSSetting(1, "Basic", "Fast"));
m_gs_hw_mipmapping.push_back(GSSetting(2, "Full", "Very Slow - Not Recommended)"));
m_gs_hw_mipmapping.push_back(GSSetting(2, "Full", "Very Slow - Not Recommended"));
m_gs_crc_level = {
GSSetting(CRCHackLevel::Automatic, "Automatic", "Default"),