From 0255f775da1b704e763c1bea862ba85c025246c4 Mon Sep 17 00:00:00 2001 From: tmator Date: Mon, 2 Mar 2009 19:28:30 +0000 Subject: [PATCH] fix osx plugin dir git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2523 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Common/Src/CommonPaths.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Core/Common/Src/CommonPaths.h b/Source/Core/Common/Src/CommonPaths.h index f37a64c0ba..54e2b366dc 100644 --- a/Source/Core/Common/Src/CommonPaths.h +++ b/Source/Core/Common/Src/CommonPaths.h @@ -34,7 +34,11 @@ #define DIR_SEP "/" #define DIR_SEP_CHR '/' +#if defined __APPLE__ +#define PLUGINS_DIR "Contents/PlugIns" +#else #define PLUGINS_DIR "Plugins" +#endif #define ROOT_DIR "." #define USERDATA_DIR "User" #define SYSDATA_DIR "Sys"