Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #201 from Sonicadvance1/Revert-PR179
Revert "Remove an unnecessary wx translation underscore macro from PHackSettings."
  • Loading branch information
neobrain committed Mar 24, 2014
2 parents 94ceb4d + 479695d commit 4aba433
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/DolphinWX/PHackSettings.cpp
Expand Up @@ -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);
Expand All @@ -104,7 +104,7 @@ void CPHackSettings::LoadPHackData()
sTemp = WxStrToStr(_("(UNKNOWN)"));

if (i == 0)
PHackChoice->Append("-------------");
PHackChoice->Append(StrToWxStr("-------------"));

PHackChoice->Append(StrToWxStr(sTemp));
}
Expand Down

0 comments on commit 4aba433

Please sign in to comment.