Fixed translation of strings at runtime.

Static strings can not be translated until wxLocale is initialised.

This reverts commit 0004b6004b.

Conflicts:
	Source/Core/DolphinWX/VideoConfigDiag.cpp
This commit is contained in:
Matthew Parlane
2015-06-07 15:32:29 +12:00
parent b0afb08170
commit 1aa829c03c
5 changed files with 128 additions and 127 deletions

View File

@ -17,6 +17,13 @@ public:
GeneralConfigPane(wxWindow* parent, wxWindowID id);
private:
struct CPUCore
{
int CPUid;
wxString name;
};
std::vector<CPUCore> cpu_cores;
void InitializeGUI();
void LoadGUIValues();
void RefreshGUI();