Fix build on openSUSE 11.4 (not sure why it worked fine everywhere else anyway).
Fixes issue 4537. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7573 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
3d676ac57e
commit
39cbd73e02
|
@ -45,7 +45,7 @@ CPHackSettings::~CPHackSettings()
|
|||
void CPHackSettings::CreateGUIControls()
|
||||
{
|
||||
wxStaticText *PHackChoiceText = new wxStaticText(this, wxID_ANY, _("Presets: "));
|
||||
PHackChoice = new wxChoice(this, ID_PHACK_CHOICE, wxDefaultPosition, wxDefaultSize, wxArrayString(0, wxString("", *wxConvCurrent)));
|
||||
PHackChoice = new wxChoice(this, ID_PHACK_CHOICE);
|
||||
PHackChoice->SetToolTip(_("Load preset values from hack patterns available."));
|
||||
wxStaticText *PHackZNearText = new wxStaticText(this, wxID_ANY, _("zNear Correction: "));
|
||||
PHackZNear = new wxTextCtrl(this, ID_PHACK_ZNEAR);
|
||||
|
|
Loading…
Reference in New Issue