updated common paths
This commit is contained in:
parent
62d873da3e
commit
6847033b27
4 changed files with 13 additions and 16 deletions
|
@ -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.
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue