From 3c9367825c0383cd2566f5db36cae553e640b02f Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Sat, 2 Aug 2014 13:32:48 +0200 Subject: [PATCH] wx3.0: partially revert 1fda2a611c55ab1cae10df548cbd98ffada327d8 I wrongly removed code that set the language directory on Windows. Linux uses another way (don't know which one) close issue #189 --- pcsx2/gui/AppMain.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pcsx2/gui/AppMain.cpp b/pcsx2/gui/AppMain.cpp index f4ee475e19..8469af7231 100644 --- a/pcsx2/gui/AppMain.cpp +++ b/pcsx2/gui/AppMain.cpp @@ -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 {