common_paths.h: Migrate user directory from Citra to Lime3DS

This commit is contained in:
Reg Tiangha 2024-06-08 22:26:52 -06:00 committed by OpenSauce
parent bc1cd10ae8
commit d2a5260d62

View File

@ -18,18 +18,18 @@
#define EMU_DATA_DIR USER_DIR
#else
#ifdef _WIN32
#define EMU_DATA_DIR "Citra"
#define EMU_DATA_DIR "Lime3DS"
#elif defined(__APPLE__)
#include <TargetConditionals.h>
#if TARGET_OS_IPHONE
#define APPLE_EMU_DATA_DIR "Documents" DIR_SEP "Citra"
#define APPLE_EMU_DATA_DIR "Documents" DIR_SEP "Lime3DS"
#else
#define APPLE_EMU_DATA_DIR "Library" DIR_SEP "Application Support" DIR_SEP "Citra"
#define APPLE_EMU_DATA_DIR "Library" DIR_SEP "Application Support" DIR_SEP "Lime3DS"
#endif
// For compatibility with XDG paths.
#define EMU_DATA_DIR "citra-emu"
#define EMU_DATA_DIR "lime3ds-emu"
#else
#define EMU_DATA_DIR "citra-emu"
#define EMU_DATA_DIR "lime3ds-emu"
#endif
#endif