From d2a5260d625f105a5ae10e67df0c8c2baad84667 Mon Sep 17 00:00:00 2001 From: Reg Tiangha Date: Sat, 8 Jun 2024 22:26:52 -0600 Subject: [PATCH] common_paths.h: Migrate user directory from Citra to Lime3DS --- src/common/common_paths.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/common/common_paths.h b/src/common/common_paths.h index 71c4de06f..0e2fe8a98 100644 --- a/src/common/common_paths.h +++ b/src/common/common_paths.h @@ -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 #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