linux build fixes. I don't know why ConfigMain is sized oddly on linux.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1130 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman
2008-11-11 19:09:52 +00:00
parent 7df9681bc2
commit fa1c90a411
3 changed files with 10 additions and 6 deletions

View File

@ -328,8 +328,12 @@ void ConfigDialog::OnButtonClick(wxCommandEvent& event)
void ConfigDialog::DllAbout(wxCommandEvent& event)
{
wxString message;
_WIN32 ? message = "A simple keyboard and XInput plugin for dolphin." : message = "A simple keyboard plugin for dolphin.";
#ifdef _WIN32
message = _("A simple keyboard and XInput plugin for dolphin.");
#else
message = _("A simple keyboard plugin for dolphin.");
#endif
wxMessageBox(_T("Dolphin PadSimple Plugin\nBy ector and F|RES\n\n" + message),
_T("Dolphin PadSimple"), wxOK, this);
}
}