| |
| |
| |
|
|
| #pragma once |
|
|
| |
| #define DIR_SEP "/" |
| #define DIR_SEP_CHR '/' |
|
|
| #ifndef MAX_PATH |
| #define MAX_PATH 260 |
| #endif |
|
|
| |
| #define USERDATA_DIR "user" |
| #ifdef USER_DIR |
| #define EMU_DATA_DIR USER_DIR |
| #else |
| #ifdef _WIN32 |
| #define EMU_DATA_DIR "Citra" |
| #elif defined(__APPLE__) |
| #include <TargetConditionals.h> |
| #if TARGET_OS_IPHONE |
| #define APPLE_EMU_DATA_DIR "Documents" DIR_SEP "Citra" |
| #else |
| #define APPLE_EMU_DATA_DIR "Library" DIR_SEP "Application Support" DIR_SEP "Citra" |
| #endif |
| |
| #define EMU_DATA_DIR "citra-emu" |
| #else |
| #define EMU_DATA_DIR "citra-emu" |
| #endif |
| #endif |
|
|
| |
| #define EUR_DIR "EUR" |
| #define USA_DIR "USA" |
| #define JAP_DIR "JAP" |
|
|
| |
| #define CONFIG_DIR "config" |
| #define CACHE_DIR "cache" |
| #define SDMC_DIR "sdmc" |
| #define NAND_DIR "nand" |
| #define SYSDATA_DIR "sysdata" |
| #define LOG_DIR "log" |
| #define CHEATS_DIR "cheats" |
| #define DLL_DIR "external_dlls" |
| #define SHADER_DIR "shaders" |
| #define DUMP_DIR "dump" |
| #define LOAD_DIR "load" |
| #define SHADER_DIR "shaders" |
| #define STATES_DIR "states" |
|
|
| |
| |
| #define LOG_FILE "citra_log.txt" |
|
|
| |
| #define EMU_CONFIG "emu.ini" |
| #define DEBUGGER_CONFIG "debugger.ini" |
| #define LOGGER_CONFIG "logger.ini" |
|
|
| |
| #define SHARED_FONT "shared_font.bin" |
| #define AES_KEYS "aes_keys.txt" |
| #define BOOTROM9 "boot9.bin" |
| #define SECRET_SECTOR "sector0x96.bin" |
|
|