summaryrefslogtreecommitdiffstats
path: root/src/common/src/common_paths.h
diff options
context:
space:
mode:
authorShizZy <shizzy@6bit.net>2013-09-08 19:17:27 +0200
committerShizZy <shizzy@6bit.net>2013-09-08 19:17:27 +0200
commit6847033b27cb07c566d75fb291131910a4296702 (patch)
tree83675e98f19a6dc597c90a139c70b0a18d713c9b /src/common/src/common_paths.h
parentstart of 3DS memory map (diff)
downloadyuzu-6847033b27cb07c566d75fb291131910a4296702.tar
yuzu-6847033b27cb07c566d75fb291131910a4296702.tar.gz
yuzu-6847033b27cb07c566d75fb291131910a4296702.tar.bz2
yuzu-6847033b27cb07c566d75fb291131910a4296702.tar.lz
yuzu-6847033b27cb07c566d75fb291131910a4296702.tar.xz
yuzu-6847033b27cb07c566d75fb291131910a4296702.tar.zst
yuzu-6847033b27cb07c566d75fb291131910a4296702.zip
Diffstat (limited to '')
-rw-r--r--src/common/src/common_paths.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/common/src/common_paths.h b/src/common/src/common_paths.h
index 9af93ab74..b38ae6903 100644
--- a/src/common/src/common_paths.h
+++ b/src/common/src/common_paths.h
@@ -12,17 +12,19 @@
#define DIR_SEP "/"
#define DIR_SEP_CHR '/'
+#define MAX_PATH 255
+
// The user data dir
#define ROOT_DIR "."
#ifdef _WIN32
#define USERDATA_DIR "user"
- #define DOLPHIN_DATA_DIR "akiru"
+ #define EMU_DATA_DIR "emu"
#else
#define USERDATA_DIR "user"
#ifdef USER_DIR
- #define DOLPHIN_DATA_DIR USER_DIR
+ #define EMU_DATA_DIR USER_DIR
#else
- #define DOLPHIN_DATA_DIR ".akiru"
+ #define EMU_DATA_DIR ".akiru"
#endif
#endif
@@ -61,7 +63,7 @@
// Filenames
// Files in the directory returned by GetUserPath(D_CONFIG_IDX)
-#define AKIRU_CONFIG "akiru.ini"
+#define EMU_CONFIG "emu.ini"
#define DEBUGGER_CONFIG "debugger.ini"
#define LOGGER_CONFIG "logger.ini"