From 6847033b27cb07c566d75fb291131910a4296702 Mon Sep 17 00:00:00 2001 From: ShizZy Date: Sun, 8 Sep 2013 13:17:27 -0400 Subject: updated common paths --- src/common/src/common.h | 1 + src/common/src/common_paths.h | 10 ++++++---- 2 files changed, 7 insertions(+), 4 deletions(-) (limited to 'src/common') diff --git a/src/common/src/common.h b/src/common/src/common.h index f95d58074..b61e77686 100644 --- a/src/common/src/common.h +++ b/src/common/src/common.h @@ -47,6 +47,7 @@ private: #include "common_types.h" #include "msg_handler.h" #include "common_funcs.h" +#include "common_paths.h" #ifdef __APPLE__ // The Darwin ABI requires that stack frames be aligned to 16-byte boundaries. 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" -- cgit v1.2.3