From bbde9cbeaee0ecc7844b6a031c50ab2656eb306d Mon Sep 17 00:00:00 2001 From: rukai Date: Sun, 21 Jun 2015 14:32:41 +1000 Subject: [PATCH] Swapped out spaces for tabs --- Source/Core/DolphinWX/Main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinWX/Main.cpp b/Source/Core/DolphinWX/Main.cpp index 97585fc85e..e386d99ac3 100644 --- a/Source/Core/DolphinWX/Main.cpp +++ b/Source/Core/DolphinWX/Main.cpp @@ -332,9 +332,9 @@ void DolphinApp::InitLanguageSupport() { m_locale = new wxLocale(language); - // Specify where dolphins *.gmo files are located on each operating system + // Specify where dolphins *.gmo files are located on each operating system #ifdef _WIN32 - m_locale->AddCatalogLookupPathPrefix(StrToWxStr(File::GetExeDirectory() + DIR_SEP "Languages")); + m_locale->AddCatalogLookupPathPrefix(StrToWxStr(File::GetExeDirectory() + DIR_SEP "Languages")); #elif defined(__LINUX__) m_locale->AddCatalogLookupPathPrefix(StrToWxStr(DATA_DIR "../locale")); #elif defined(__APPLE__)