Remove an unnecessary wx translation underscore macro from PHackSettings.

Also removed an unnecessary string -> wx string conversion.
This commit is contained in:
Lioncash 2014-03-16 19:02:28 -04:00
parent 291c95b780
commit 110f603cb6
1 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ void CPHackSettings::LoadPHackData()
std::string sIndex;
PHackChoice->Clear();
PHackChoice->Append(_("[Custom]"));
PHackChoice->Append("[Custom]");
for (int i = 0; ; i++)
{
sIndex = std::to_string(i);
@ -104,7 +104,7 @@ void CPHackSettings::LoadPHackData()
sTemp = WxStrToStr(_("(UNKNOWN)"));
if (i == 0)
PHackChoice->Append(StrToWxStr("-------------"));
PHackChoice->Append("-------------");
PHackChoice->Append(StrToWxStr(sTemp));
}