mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
5f449151a1
commit
7a3239cba0
|
@ -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"),
|
||||
|
|
Loading…
Reference in New Issue