mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Don't expose SYSDATA_DIR in a header
This commit is contained in:
parent
b187d4cd08
commit
d1c1793a34
@ -27,21 +27,6 @@
|
|||||||
#define DOLPHIN_DATA_DIR "dolphin-emu"
|
#define DOLPHIN_DATA_DIR "dolphin-emu"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Shared data dirs (Sys and shared User for Linux)
|
|
||||||
#if defined(_WIN32) || defined(LINUX_LOCAL_DEV)
|
|
||||||
#define SYSDATA_DIR "Sys"
|
|
||||||
#elif defined __APPLE__
|
|
||||||
#define SYSDATA_DIR "Contents/Resources/Sys"
|
|
||||||
#elif defined ANDROID
|
|
||||||
#define SYSDATA_DIR "/sdcard/dolphin-emu"
|
|
||||||
#else
|
|
||||||
#ifdef DATA_DIR
|
|
||||||
#define SYSDATA_DIR DATA_DIR "sys"
|
|
||||||
#else
|
|
||||||
#define SYSDATA_DIR "sys"
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Dirs in both User and Sys
|
// Dirs in both User and Sys
|
||||||
#define EUR_DIR "EUR"
|
#define EUR_DIR "EUR"
|
||||||
#define USA_DIR "USA"
|
#define USA_DIR "USA"
|
||||||
|
@ -692,6 +692,20 @@ std::string GetSysDirectory()
|
|||||||
{
|
{
|
||||||
std::string sysDir;
|
std::string sysDir;
|
||||||
|
|
||||||
|
#if defined(_WIN32) || defined(LINUX_LOCAL_DEV)
|
||||||
|
#define SYSDATA_DIR "Sys"
|
||||||
|
#elif defined __APPLE__
|
||||||
|
#define SYSDATA_DIR "Contents/Resources/Sys"
|
||||||
|
#elif defined ANDROID
|
||||||
|
#define SYSDATA_DIR "/sdcard/dolphin-emu"
|
||||||
|
#else
|
||||||
|
#ifdef DATA_DIR
|
||||||
|
#define SYSDATA_DIR DATA_DIR "sys"
|
||||||
|
#else
|
||||||
|
#define SYSDATA_DIR "sys"
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(__APPLE__)
|
#if defined(__APPLE__)
|
||||||
sysDir = GetBundleDirectory() + DIR_SEP + SYSDATA_DIR;
|
sysDir = GetBundleDirectory() + DIR_SEP + SYSDATA_DIR;
|
||||||
#elif defined(_WIN32) || defined(LINUX_LOCAL_DEV)
|
#elif defined(_WIN32) || defined(LINUX_LOCAL_DEV)
|
||||||
|
Loading…
Reference in New Issue
Block a user