From c9e8179c5ab5ebee8cd1adfd64f2642aa5beaa5f Mon Sep 17 00:00:00 2001 From: rukai Date: Sun, 21 Jun 2015 20:00:28 +1000 Subject: [PATCH] Added namespace to GetBundleDirectory to compile on Mac OSX --- Source/Core/DolphinWX/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/Main.cpp b/Source/Core/DolphinWX/Main.cpp index e386d99ac3..7aaf2ed0a6 100644 --- a/Source/Core/DolphinWX/Main.cpp +++ b/Source/Core/DolphinWX/Main.cpp @@ -338,7 +338,7 @@ void DolphinApp::InitLanguageSupport() #elif defined(__LINUX__) m_locale->AddCatalogLookupPathPrefix(StrToWxStr(DATA_DIR "../locale")); #elif defined(__APPLE__) - m_locale->AddCatalogLookupPathPrefix(StrToWxStr(GetBundleDirectory() + "Contents/Resources")); + m_locale->AddCatalogLookupPathPrefix(StrToWxStr(File::GetBundleDirectory() + "Contents/Resources")); #endif m_locale->AddCatalog("dolphin-emu");