mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Remove uses of __DATE__ and __TIME__
This commit is contained in:
@ -51,7 +51,6 @@ AboutDolphin::AboutDolphin(wxWindow *parent, wxWindowID id,
|
||||
const wxString CopyrightText = _("(c) 2003-2015+ Dolphin Team. \"GameCube\" and \"Wii\" are trademarks of Nintendo. Dolphin is not affiliated with Nintendo in any way.");
|
||||
const wxString BranchText = wxString::Format(_("Branch: %s"), scm_branch_str);
|
||||
const wxString BranchRevText = wxString::Format(_("Revision: %s"), scm_rev_git_str);
|
||||
const wxString CompiledText = wxString::Format(_("Compiled: %s @ %s"), __DATE__, __TIME__);
|
||||
const wxString CheckUpdateText = _("Check for updates: ");
|
||||
const wxString Text = _("\n"
|
||||
"Dolphin is a free and open-source GameCube and Wii emulator.\n"
|
||||
@ -65,7 +64,7 @@ AboutDolphin::AboutDolphin(wxWindow *parent, wxWindowID id,
|
||||
wxStaticText* const Revision = new wxStaticText(this, wxID_ANY, RevisionText);
|
||||
|
||||
wxStaticText* const Copyright = new wxStaticText(this, wxID_ANY, CopyrightText);
|
||||
wxStaticText* const Branch = new wxStaticText(this, wxID_ANY, BranchText + "\n" + BranchRevText + "\n" + CompiledText+"\n");
|
||||
wxStaticText* const Branch = new wxStaticText(this, wxID_ANY, BranchText + "\n" + BranchRevText + "\n");
|
||||
wxStaticText* const Message = new wxStaticText(this, wxID_ANY, Text);
|
||||
wxStaticText* const UpdateText = new wxStaticText(this, wxID_ANY, CheckUpdateText);
|
||||
wxStaticText* const FirstSpacer = new wxStaticText(this, wxID_ANY, " | ");
|
||||
|
Reference in New Issue
Block a user