mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 14:46:49 +01:00
Merge pull request #179 from lioncash/phack-cleanup
Remove an unnecessary wx translation underscore macro from PHackSettings.
This commit is contained in:
commit
4c1cb65e1e
@ -90,7 +90,7 @@ void CPHackSettings::LoadPHackData()
|
|||||||
std::string sIndex;
|
std::string sIndex;
|
||||||
|
|
||||||
PHackChoice->Clear();
|
PHackChoice->Clear();
|
||||||
PHackChoice->Append(_("[Custom]"));
|
PHackChoice->Append("[Custom]");
|
||||||
for (int i = 0; ; i++)
|
for (int i = 0; ; i++)
|
||||||
{
|
{
|
||||||
sIndex = std::to_string(i);
|
sIndex = std::to_string(i);
|
||||||
@ -104,7 +104,7 @@ void CPHackSettings::LoadPHackData()
|
|||||||
sTemp = WxStrToStr(_("(UNKNOWN)"));
|
sTemp = WxStrToStr(_("(UNKNOWN)"));
|
||||||
|
|
||||||
if (i == 0)
|
if (i == 0)
|
||||||
PHackChoice->Append(StrToWxStr("-------------"));
|
PHackChoice->Append("-------------");
|
||||||
|
|
||||||
PHackChoice->Append(StrToWxStr(sTemp));
|
PHackChoice->Append(StrToWxStr(sTemp));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user