2014-12-17 00:38:14 -05:00
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-04 20:17:46 -04:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-08-17 13:45:50 -04:00
|
|
|
#pragma once
|
2013-09-04 20:17:46 -04:00
|
|
|
|
2014-09-12 20:06:13 -04:00
|
|
|
// Directory separators, do we need this?
|
2013-09-04 20:17:46 -04:00
|
|
|
#define DIR_SEP "/"
|
|
|
|
#define DIR_SEP_CHR '/'
|
|
|
|
|
2013-09-08 20:42:03 -04:00
|
|
|
#ifndef MAX_PATH
|
2014-09-12 20:06:13 -04:00
|
|
|
#define MAX_PATH 260
|
2013-09-08 20:42:03 -04:00
|
|
|
#endif
|
2013-09-08 13:17:27 -04:00
|
|
|
|
2013-09-04 20:17:46 -04:00
|
|
|
// The user data dir
|
|
|
|
#define ROOT_DIR "."
|
2015-03-15 21:22:59 -04:00
|
|
|
#define USERDATA_DIR "user"
|
|
|
|
#ifdef USER_DIR
|
2016-09-17 20:38:01 -04:00
|
|
|
#define EMU_DATA_DIR USER_DIR
|
2013-09-04 20:17:46 -04:00
|
|
|
#else
|
2016-09-17 20:38:01 -04:00
|
|
|
#ifdef _WIN32
|
2016-11-26 16:57:36 -05:00
|
|
|
#define EMU_DATA_DIR "Citra"
|
2016-09-17 20:38:01 -04:00
|
|
|
#else
|
|
|
|
#define EMU_DATA_DIR "citra-emu"
|
|
|
|
#endif
|
2013-09-04 20:17:46 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Dirs in both User and Sys
|
|
|
|
#define EUR_DIR "EUR"
|
|
|
|
#define USA_DIR "USA"
|
|
|
|
#define JAP_DIR "JAP"
|
|
|
|
|
|
|
|
// Subdirs in the User dir returned by GetUserPath(D_USER_IDX)
|
2016-09-17 20:38:01 -04:00
|
|
|
#define CONFIG_DIR "config"
|
|
|
|
#define CACHE_DIR "cache"
|
|
|
|
#define SDMC_DIR "sdmc"
|
|
|
|
#define NAND_DIR "nand"
|
|
|
|
#define SYSDATA_DIR "sysdata"
|
2013-09-04 20:17:46 -04:00
|
|
|
|
|
|
|
// Filenames
|
|
|
|
// Files in the directory returned by GetUserPath(D_CONFIG_IDX)
|
2016-09-17 20:38:01 -04:00
|
|
|
#define EMU_CONFIG "emu.ini"
|
|
|
|
#define DEBUGGER_CONFIG "debugger.ini"
|
|
|
|
#define LOGGER_CONFIG "logger.ini"
|
2013-09-04 20:17:46 -04:00
|
|
|
|
2014-11-26 15:00:51 -05:00
|
|
|
// Sys files
|
2016-09-17 20:38:01 -04:00
|
|
|
#define SHARED_FONT "shared_font.bin"
|