wx3.0: partially revert 1fda2a611c

I wrongly removed code that set the language directory on Windows.
Linux uses another way (don't know which one)

close issue #189
This commit is contained in:
Gregory Hainaut 2014-08-02 13:32:48 +02:00
parent e99540554a
commit 3c9367825c

View File

@ -348,6 +348,11 @@ wxMessageOutput* Pcsx2AppTraits::CreateMessageOutput()
class Pcsx2StandardPaths : public wxStandardPaths
{
public:
wxString GetResourcesDir() const
{
return Path::Combine( GetDataDir(), L"Langs" );
}
#ifdef __LINUX__
wxString GetUserLocalDataDir() const
{