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
|
2018-01-11 23:56:15 -05:00
|
|
|
#define EMU_DATA_DIR "yuzu"
|
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"
|
|
|
|
|
2018-07-21 15:52:42 -04:00
|
|
|
// Subdirs in the User dir returned by GetUserPath(UserPath::UserDir)
|
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"
|
2018-07-02 13:10:41 -04:00
|
|
|
#define LOG_DIR "log"
|
2013-09-04 20:17:46 -04:00
|
|
|
|
|
|
|
// Filenames
|
2018-07-21 15:52:42 -04:00
|
|
|
// Files in the directory returned by GetUserPath(UserPath::ConfigDir)
|
2016-09-17 20:38:01 -04:00
|
|
|
#define EMU_CONFIG "emu.ini"
|
|
|
|
#define DEBUGGER_CONFIG "debugger.ini"
|
|
|
|
#define LOGGER_CONFIG "logger.ini"
|
2018-07-21 15:52:42 -04:00
|
|
|
// Files in the directory returned by GetUserPath(UserPath::LogDir)
|
2018-07-06 09:47:06 -04:00
|
|
|
#define LOG_FILE "yuzu_log.txt"
|
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"
|
2017-01-01 07:58:02 -05:00
|
|
|
#define AES_KEYS "aes_keys.txt"
|