diff --git a/Source/Core/Common/Src/FileUtil.cpp b/Source/Core/Common/Src/FileUtil.cpp index 3424defd06..a98dbce1be 100644 --- a/Source/Core/Common/Src/FileUtil.cpp +++ b/Source/Core/Common/Src/FileUtil.cpp @@ -531,8 +531,15 @@ std::string GetBundleDirectory() CFStringGetFileSystemRepresentation(BundlePath, AppBundlePath, sizeof(AppBundlePath)); CFRelease(BundleRef); CFRelease(BundlePath); - +#if defined(HAVE_WX) && HAVE_WX return AppBundlePath; +#else + std::string NoWxBundleDirectory; + NoWxBundleDirectory=AppBundlePath; + NoWxBundleDirectory+=DIR_SEP; + NoWxBundleDirectory+="Dolphin.app"; + return NoWxBundleDirectory; +#endif } #endif