mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
e99540554a
commit
3c9367825c
|
@ -348,6 +348,11 @@ wxMessageOutput* Pcsx2AppTraits::CreateMessageOutput()
|
||||||
class Pcsx2StandardPaths : public wxStandardPaths
|
class Pcsx2StandardPaths : public wxStandardPaths
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
wxString GetResourcesDir() const
|
||||||
|
{
|
||||||
|
return Path::Combine( GetDataDir(), L"Langs" );
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef __LINUX__
|
#ifdef __LINUX__
|
||||||
wxString GetUserLocalDataDir() const
|
wxString GetUserLocalDataDir() const
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue